int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Answer Posted / priya
answer will be 1,2
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What does %c do in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is meant by high-order and low-order bytes?
What is the difference between if else and switchstatement
What is the purpose of macro in C language?
Is main an identifier in c?
What is s in c?
What is the use of typedef in structure in c?
What does #pragma once mean?
Mention four important string handling functions in c languages .
What are actual arguments?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Write a progarm to find the length of string using switch case?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)