what is available in C language but not in C++?
Answer Posted / amit soni
c is a structured language but c++ is object orientd.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What does the c in ctime mean?
Why shouldn’t I start variable names with underscores?
Differentiate between the expression “++a” and “a++”?
What does char * * argv mean in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is null in c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Explain what is the most efficient way to store flag values?
What are the types of macro formats?
What are the uses of a pointer?
How can I find the modification date of a file?
Do pointers take up memory?
Why use int main instead of void main?
Explain output of printf("Hello World"-'A'+'B'); ?