int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Post New Answer View All Answers
What is the maximum length of an identifier?
Why can't I perform arithmetic on a void* pointer?
Explain how are 16- and 32-bit numbers stored?
what do the 'c' and 'v' in argc and argv stand for?
Stimulate calculator using Switch-case-default statement for two numbers
How does struct work in c?
How do I get a null pointer in my programs?
write a program to create a sparse matrix using dynamic memory allocation.
How can I manipulate strings of multibyte characters?
What is sizeof return 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
I have a varargs function which accepts a float parameter?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Why functions are used in c?
What does the function toupper() do?