int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / madhu
No doubt ans is : 1,2
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is getch?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Why is c fast?
Explain the array representation of a binary tree in C.
What is the difference between far and near in c?
Write a program to check whether a number is prime or not using c?
Can a variable be both constant and volatile?
Tell me what is the purpose of 'register' keyword in c language?
What is wrong in this statement? scanf(ā%dā,whatnumber);
Define C in your own Language.
Tell me what are bitwise shift operators?
How can you avoid including a header more than once?
What is a example of a variable?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.