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
What are the modifiers available in c programming language?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
Suggesting that there can be 62 seconds in a minute?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is restrict keyword in c?
What is the use of printf() and scanf() functions?
Differentiate between new and malloc(), delete and free() ?
Write a code to generate divisors of an integer?
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
How do you list a file’s date and time?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What are the advantages of external class?
What is hungarian notation? Is it worthwhile?
What is extern storage class in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.