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
Explain how do you use a pointer to a function?
What is a pointer in c plus plus?
Can i use “int” data type to store the value 32768? Why?
What is d scanf?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are header files in c?
What is %g in c?
What is a program?
Explain what are the standard predefined macros?
What is character set?
What is static memory allocation? Explain
Write a program to implement queue.
What is sizeof array in c?
What is the purpose of main() function?
What is the difference between malloc calloc and realloc in c?