Answer Posted / prabhat
if(sizeof(no)==2)
cout<<"Integer";
else if(sizeof(no)==4)
cout<<"Float";
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What are reserved words with a programming language?
The difference between printf and fprintf is ?
What is a volatile keyword in c?
State the difference between x3 and x[3].
Explain how to reverse singly link list.
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
How do I copy files?
How can I read a binary data file properly?
Explain pointer. What are function pointers in C?
What is a structure member in c?
How do I use strcmp?
Can we compile a program without main() function?
What is conio h in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above