what will be the output of this program........
main()
{
int a=2,b=4,c=6;
printf("%d");
}
why it gives the value of third variable.
Answer Posted / srinivas
the above question will give the output 0.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Why can’t constant values be used to define an array’s initial size?
What is the mean of function?
What is a #include preprocessor?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the value of uninitialized variable in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is declaration and definition in c?
When should a type cast not be used?
What is the modulus operator?
What are the application of void data type in c?
How can I get random integers in a certain range?
What are keywords in c with examples?
How can I write functions that take a variable number of arguments?
What is a pointer in c?