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
Why static variable is used in c?
What's a good way to check for "close enough" floating-point equality?
List some of the dynamic data structures in C?
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
Here is a good puzzle: how do you write a program which produces its own source code as output?
Why c language is called c?
Explain what is the difference between functions abs() and fabs()?
How can I trap or ignore keyboard interrupts like control-c?
Explain the binary height balanced tree?
What is a pointer and how it is initialized?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is difference between class and structure?
Is int a keyword in c?
What are the advantages of using Unions?
What is the difference between text and binary i/o?