Answer Posted / glibwaresoftsolutions
C++ is a general-purpose, high-level programming language used for system and application development. Developed by Bjarne Stroustrup at Bell Labs in 1983, it builds upon the C language while introducing object-oriented features. It supports multiple paradigms, including procedural, functional, and generic programming. This is one of the most commonly asked C++ interview questions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why shouldn’t I start variable names with underscores?
What are keywords in c with examples?
What is console in c language?
Can we use visual studio for c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is a null pointer in c?
How to declare pointer variables?
How can I determine whether a machines byte order is big-endian or little-endian?
Explain what are reserved words?
How many types of operators are there in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How are strings stored in c?
How can I write functions that take a variable number of arguments?
Why do we use pointer to pointer in c?