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 / jayasree
2
| Is This Answer Correct ? | 7 Yes | 9 No |
Post New Answer View All Answers
Array is an lvalue or not?
What are the key features in c programming language?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Write a program to print “hello world” without using semicolon?
What is a stream?
Differentiate between the expression “++a” and “a++”?
Describe newline escape sequence with a sample program?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is pass by reference in c?
what is use of malloc and calloc?
Why is event driven programming or procedural programming, better within specific scenario?
What is table lookup in c?
Can a pointer be volatile in c?
Explain what is the concatenation operator?
Why is sprintf unsafe?