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 / rajeswari sethu
hi guys my answer is 2,2
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is function prototype in c with example?
How old is c programming language?
Dont ansi function prototypes render lint obsolete?
Explain about C function prototype?
What is linear search?
What are shell structures used for?
What is realloc in c?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is #define in c?
What math functions are available for integers? For floating point?
What is the difference between typedef and #define?
I have seen function declarations that look like this
Explain what is the difference between a free-standing and a hosted environment?
When do we get logical errors?
Explain the bubble sort algorithm.