#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


Please Help Members By Posting Answers For Below Questions

What is the best organizational structure?

637


what is the significance of static storage class specifier?

1659


How many header files are in c?

547


What does *p++ do? What does it point to?

612


What is the difference between new and malloc functions?

574






What does #pragma once mean?

682


What is malloc return c?

596


What is wrong with this initialization?

585


What are the advantages of using new operator as compared to the function malloc ()?

752


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

869


Why is struct padding needed?

625


Why do we use & in c?

587


What is linear search?

678


What does it mean when a pointer is used in an if statement?

598


What is array of structure in c?

594