main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?
Answer Posted / loganathan
2 2 2
it returns the size of the integer
| Is This Answer Correct ? | 9 Yes | 15 No |
Post New Answer View All Answers
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Explain how can a program be made to print the line number where an error occurs?
what will be maximum number of comparisons when number of elements are given?
Define Array of pointers.
Do you know null pointer?
How can I implement sets or arrays of bits?
What is spaghetti programming?
Differentiate between declaring a variable and defining a variable?
Describe wild pointers in c?
Which header file is used for clrscr?
Why c language?
Explain about the constants which help in debugging?
How can you increase the allowable number of simultaneously open files?
What is the meaning of ?
Write a program for finding factorial of a number.