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 benefit of using const for declaring constants?
What is masking?
What are predefined functions in c?
What are the advantages of using macro in c language?
What is a list in c?
Explain what is the difference between functions abs() and fabs()?
What is the difference between procedural and functional programming?
How will you write a code for accessing the length of an array without assigning it to another variable?
Why clrscr is used in c?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Write programs for String Reversal & Palindrome check
What is size of union in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
If null and 0 are equivalent as null pointer constants, which should I use?
what is a constant pointer in C