a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
6 15169f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
5 11156macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 37508enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
8 45174
Calculate 1*2*3*____*n using recursive function??
Explain the difference between ++u and u++?
What is the difference between malloc() and calloc()?
What are the salient features of c languages?
What is your stream meaning?
What are the characteristics of arrays in c?
Do you know what are bitwise shift operators in c programming?
Define macros.
all c language question
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What is the scope of local variable in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What does %d do?
What does. int *x[](); means ?