what is the difference between c and c++?

Answer Posted / manish soni

1.c is supprt top down approach while cpp support bottom up
approach.
2.c can't handle big program while cpp can do this task.


manish soni TBC jaipur

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is a pointer a kind of array?

598


What are file streams?

562


What is meant by keywords in c?

612


What is the difference between test design and test case design?

1564


Write a program to swap two numbers without using the third variable?

591






is it possible to create your own header files?

631


How macro execution is faster than function ?

660


What would be an example of a structure analogous to structure c?

572


why return type of main is not necessary in linux

1698


What is define directive?

634


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

762


What is the right way to use errno?

619


Explain c preprocessor?

678


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

703


Can a variable be both static and volatile in c?

604