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 / mallikharjuna
6 will come
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is there any possibility to create customized header file with c programming language?
What is a #include preprocessor?
Explain how do you convert strings to numbers in c?
Is c# a good language?
What is wrong with this code?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is || operator and how does it function in a program?
Explain modulus operator. What are the restrictions of a modulus operator?
How can I determine whether a machines byte order is big-endian or little-endian?
Write a code on reverse string and its complexity.
What is the symbol indicated the c-preprocessor?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the function of multilevel pointer in c?
Is javascript based on c?
How variables are declared in c?