#include<stdio.h>
main(0
{
printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3));
}
Answer Posted / nithya
the above code output is
syntax error
this code will be change from
#include<stdio.h>
main()
{
printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3));
}
the out put is
222
Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is #line in c?
What is hashing in c?
What the advantages of using Unions?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How do I round numbers?
Is this program statement valid? INT = 10.50;
Why do we use header files in c?
Why #include is used in c language?
Why cant I open a file by its explicit path?
How would you obtain the current time and difference between two times?
What is the use of a semicolon (;) at the end of every program statement?
Is null a keyword in c?
What is a memory leak? How to avoid it?
What does stand for?