int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / arunkumar ms
1,2
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is header file definition?
How can I copy just a portion of a string?
Explain what standard functions are available to manipulate strings?
What are lookup tables in c?
write a c program to find the sum of five entered numbers using an array named number
Where in memory are my variables stored?
Can I initialize unions?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
Can we change the value of static variable in c?
Why is a semicolon (;) put at the end of every program statement?
Explain what is the difference between a string and an array?
What is the purpose of & in scanf?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Can we declare variables anywhere in c?
Why doesnt long int work?