main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?
Answer Posted / animesh_chakraborty
answer is:124
i compiled it and it has shown this result .
i thing it is correct answer.
| Is This Answer Correct ? | 10 Yes | 5 No |
Post New Answer View All Answers
What is NULL pointer?
Can you explain the four storage classes in C?
What are the valid places to have keyword “break”?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the difference between memcpy and memmove?
What functions are used for dynamic memory allocation in c language?
Write the Program to reverse a string using pointers.
What does typedef struct mean?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What are unions in c?
Explain a file operation in C with an example.
How can I call fortran?
What math functions are available for integers? For floating point?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?