main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?

Answer Posted / animesh_chakraborty

answer is:124
i compiled it and it has shown this result .
i thing it is correct answer.

Is This Answer Correct ?    10 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the benefits of organizational structure?

763


What is extern variable in c with example?

750


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

971


What is the difference between strcpy() and memcpy() function in c programming?

844


Why main is used in c?

812


What are the different types of linkage exist in c?

776


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

817


Which is better oop or procedural?

809


What is string function in c?

725


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

1047


What is stack in c?

827


How can I dynamically allocate arrays?

772


What is a good data structure to use for storing lines of text?

816


What is a struct c#?

773


What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

862