Find the output?
void main()
{float a=2.0;
printf("\nSize of a ::%d",sizeof(a));
printf("\nSize of 2.0 ::%d",sizeof(2.0));}
Answer Posted / deepshree sinha
2
2
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How do I determine whether a character is numeric, alphabetic, and so on?
What is LINKED LIST? How can you access the last element in a linked list?
Are there constructors in c?
Write a program to check prime number in c programming?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What are global variables?
If I have a char * variable pointing to the name of a function ..
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Describe how arrays can be passed to a user defined function
What is an arrays?
Explain bitwise shift operators?
There seem to be a few missing operators ..
What are qualifiers and modifiers c?
What is c definition?
Write a program to reverse a given number in c language?