int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / geetha
answer is 1,2
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is #define in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Can we use any name in place of argv and argc as command line arguments?
What's the right way to use errno?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What does it mean when a pointer is used in an if statement?
How can you tell whether a program was compiled using c versus c++?
How can I manipulate strings of multibyte characters?
program for reversing a selected line word by word when multiple lines are given without using strrev
Is printf a keyword?
What is the difference between strcpy() and memcpy() function in c programming?
Is it better to use a macro or a function?
Explain how can I manipulate strings of multibyte characters?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Does c have class?