int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / sateeshbabu aluri
o/p will be: 1 2 only
3 will be ommited because there is no conversion operator
in printf.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
how to write optimum code to divide a 50 digit number with a 25 digit number??
Not all reserved words are written in lowercase. TRUE or FALSE?
How can I use a preprocessorif expression to ?
How can I convert a number to a string?
What is assert and when would I use it?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What does d mean?
There seem to be a few missing operators ..
What are pointers in C? Give an example where to illustrate their significance.
Why does everyone say not to use scanf? What should I use instead?
Which are low level languages?
What is local and global variable in c?
Explain null pointer.
What are the types of functions in c?
Explain what are its uses in c programming?