#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
Which is better oop or procedural?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Can we change the value of #define in c?
what do you mean by enumeration constant?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is a union?
Between macros and functions,which is better to use and why?
Lists the benefits of c programming language?
How can you restore a redirected standard stream?
What is build process in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Sir i need notes for structure,functions,pointers in c language can you help me please
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is #include called?
Using which language Test cases are added in .ptu file of RTRT unit testing???