what is available in C language but not in C++?
Answer Posted / faheem
in c default return type is void but in c++ it is int.
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Not all reserved words are written in lowercase. TRUE or FALSE?
Is it possible to have a function as a parameter in another function?
What are header files and explain what are its uses in c programming?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is data structure in c and its types?
What is meant by 'bit masking'?
How can I delete a file?
Is c procedural or functional?
What is the difference between text and binary i/o?
Why is structure important for a child?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Where register variables are stored in c?
What is the difference between #include and #include 'file' ?
What is the use of pointers in C?
What is break statement?