Answer Posted / shwetha
c is a pop language, while cpp is an OOP language
c gives importance to procedures..
cpp give importance to the data...using objects, suitable for real worlds problems
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Explain what is the difference between a free-standing and a hosted environment?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is far pointer in c?
How can I do serial ("comm") port I/O?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Is it better to use malloc() or calloc()?
What are the types of arrays in c?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Explain the array representation of a binary tree in C.
Is c is a procedural language?
What is array of structure in c programming?
Why do some versions of toupper act strangely if given an upper-case letter?
What is difference between union and structure in c?
Describe wild pointers in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)