#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
what is the basis for selection of arrays or pointers as data structure in a program
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is ambagious result in C? explain with an example.
Can a pointer point to null?
Explain what is the most efficient way to store flag values?
What is && in c programming?
code for find determinent of amatrix
Between macros and functions,which is better to use and why?
largest Of three Number using without if condition?
What is file in c preprocessor?
What is the difference between null pointer and wild pointer?
What are the three constants used in c?
Why main is not a keyword in c?
Can we access array using pointer in c language?
When can a far pointer be used?