int a=2,b=3,c=4;
printf("a=%d,b=%d\n",a,b,c);
what is the o/p?
Answer Posted / srinivas
a=2,b=3
(for "c" variable no conversion char is there so it prints
only a&b values)
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Is printf a keyword?
What are the 4 types of unions?
What is adt in c programming?
What is struct node in c?
Why is c called "mother" language?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is an endless loop?
what do you mean by inline function in C?
What are different types of variables in c?
What are the application of c?
What is union and structure in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Where is c used?
Explain how can I avoid the abort, retry, fail messages?
What is the size of structure pointer in c?