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
Why is c known as a mother language?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Is int a keyword in c?
Why pointers are used?
List the difference between a "copy constructor" and a "assignment operator"?
What is the difference between null pointer and wild pointer?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What are all different types of pointers in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Explain what is operator promotion?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How can you draw circles in C?
What is a void * in c?
Explain modulus operator. What are the restrictions of a modulus operator?
What is function prototype?