#include<stdio.h>
main(0
{
printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3));
}
Answer Posted / a.c.pattanaik
code is error due to declaration
if code is this
main()
{
printf("\n %d %d %d",sizeof(2),sizeof("a"),sizeof(2));
}
Ans-4 2 4
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
Is multithreading possible in c?
What is void main () in c?
What is unary operator?
Why is this loop always executing once?
What is a floating point in c?
What is the purpose of main() function?
Why can’t constant values be used to define an array’s initial size?
How can I write a function that takes a format string and a variable number of arguments?
How do I get a null pointer in my programs?
What is a char in c?
What does & mean in scanf?
What is a pointer in c plus plus?
what is the basis for selection of arrays or pointers as data structure in a program
List the difference between a While & Do While loops?
Is javascript written in c?