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
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
How can you find the day of the week given the date?
How do you do dynamic memory allocation in C applications?
Why can arithmetic operations not be performed on void pointers?
What is the use of the function in c?
Write a program to identify if a given binary tree is balanced or not.
What are the 5 organizational structures?
What is the difference between fread buffer() and fwrite buffer()?
Write a program to generate the Fibinocci Series
c program for searching a student details among 10 student details
When the macros gets expanded?
How many keywords (reserve words) are in c?
Describe wild pointers in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What are unions in c?