Answer Posted / zubin abraham
C is structure oriented Designing language where as C++ is
Object oriented language
C is used for creating System level programs and c++ is used
for creating application programs and GUI
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Why is c so powerful?
Are global variables static in c?
If you know then define #pragma?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Why n++ execute faster than n+1 ?
Which header file is used for clrscr?
What is the maximum length of an identifier?
What is array in c with example?
What are multibyte characters?
Is that possible to add pointers to each other?
How is = symbol different from == symbol in c programming?
Write a program for Overriding.
How does #define work?
Is it better to bitshift a value than to multiply by 2?
What is the benefit of using const for declaring constants?