Learn Programming

Let's Learn togetherπŸ‘¨β€πŸ’»πŸ‘©β€πŸ’» :)

LIKE | SHARE | SUBSCRIBE

Contents of this Channel...!
πŸ‘‡πŸ‘‡πŸ‘‡
● C ● C++ ● Java ● Python


Learn Programming

Q. Uses of function

2 years ago | [YT] | 7

Learn Programming

Q. A function which calls itself is called a ___ function

2 years ago | [YT] | 9

Learn Programming

Array of Pointer in C

2 years ago | [YT] | 7

Learn Programming

pointer to pointer in c language

2 years ago | [YT] | 7

Learn Programming

Q. #include <stdio.h>
main()
{
int n = 0, m = 0;
if (n > 0)
if (m > 0)
printf("True");
else
printf("False");
}

2 years ago | [YT] | 7

Learn Programming

Q. How many number of pointer (*) does C have against a pointer variable declaration?

2 years ago | [YT] | 7

Learn Programming

Q. 16. The maximum length of a variable in C is ___

2 years ago | [YT] | 9

Learn Programming

Q. The function scanf is used to ___

2 years ago | [YT] | 10

Learn Programming

Increment decrement operators in c programming
video link : https://youtu.be/M3U3NaYYiSQ

2 years ago | [YT] | 7

Learn Programming

Q. What will be the output of the following C code?
int main()
{
int a = 1, b = 1, c;
c = a++ + b;
printf("%d, %d", a, b);
}

2 years ago | [YT] | 8