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
What is meant by realloc()?
Explain can you assign a different address to an array tag?
What is the value of c?
What is assert and when would I use it?
What is the use of sizeof () in c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is the use of a semicolon (;) at the end of every program statement?
How pointers are declared?
What does typedef struct mean?
Is a pointer a kind of array?
How to compare array with pointer in c?
How many keywords are there in c?
When should the register modifier be used? Does it really help?
Explain what is the heap?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }