int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / priya
answer will be 1,2
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
When should you not use a type cast?
What is a 'null pointer assignment' error?
How can I pad a string to a known length?
What is a rvalue?
Stimulate calculator using Switch-case-default statement for two numbers
What are loops in c?
What is c method?
What is meant by int main ()?
What are the advantages of c preprocessor?
Is register a keyword in c?
If null and 0 are equivalent as null pointer constants, which should I use?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Explain how do you generate random numbers in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
How can you increase the size of a dynamically allocated array?