main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
Answer Posted / shiva
2 2 2
| Is This Answer Correct ? | 12 Yes | 15 No |
Post New Answer View All Answers
What is the value of c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain bitwise shift operators?
How to implement a packet in C
What is table lookup in c?
How do you sort filenames in a directory?
What is difference between structure and union?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is memcpy() function?
Can a pointer be null?
Explain what are multidimensional arrays?
Is multithreading possible in c?
How do you define CONSTANT in C?
What are predefined functions in c?
What is typedf?