Is c++ based on c?
Answer / Amar Dixit
Yes, C++ is an extension of the C programming language. It was designed by Bjarne Stroustrup at Bell Labs in 1983 as a superset of C with additional classes, objects, and other object-oriented features.
| Is This Answer Correct ? | 0 Yes | 0 No |
what does data structure mean?
Do string constants represent numerical values?
how the compiler treats any volatile variable?Explain with example.
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
What is indirection?
What is scanf () in c?
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
Explain modulus operator.
How can you print HELLO WORLD without using "semicolon"?
Can we change the value of static variable in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays