#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
Explain a file operation in C with an example.
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What are actual arguments?
Explain the difference between ++u and u++?
Find MAXIMUM of three distinct integers using a single C statement
What is || operator and how does it function in a program?
What are the different types of constants?
What are the storage classes in C?
Under what circumstances does a name clash occur?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Tell me can the size of an array be declared at runtime?
Why pointers are used?
What is the use of putchar function?
Are pointers really faster than arrays?
Can we declare function inside main?