#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
How do you sort filenames in a directory?
What is the difference between array and structure in c?
write a program to find out prime number using sieve case?
What is local and global variable in c?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is the size of empty structure in c?
What should malloc(0) do?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
How many identifiers are there in c?
Hi can anyone tell what is a start up code?
explain what are actual arguments?
What is hash table in c?
What is meant by operator precedence?
Explain pointer. What are function pointers in C?
Is main is a keyword in c?