Answer Posted / sandeep kumar
C
1)It is structured language
2)It follows Top-down approach
3)large programs are divided into small programs called
functions
4)data move openly from one function to other function
C++
1)It is a Object oriented language
2)It is not compulsory to be top-down procedure
3)large program is divided into small objects
4)data cant be accessed by external functions easily
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Write a program to swap two numbers without using third variable in c?
How will you find a duplicate number in a array without negating the nos ?
program to convert a integer to string in c language'
Which is better pointer or array?
What is the benefit of using const for declaring constants?
What is character set?
What is difference between %d and %i in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
what is the height of tree if leaf node is at level 3. please explain
What is omp_num_threads?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain the difference between getch() and getche() in c?
How can I copy just a portion of a string?
Why c is a procedural language?