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
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Which built-in library function can be used to match a patter from the string?
Why do we use null pointer?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the size of empty structure in c?
What are the features of c languages?
Is fortran still used in 2018?
What is variable declaration and definition in c?
difference between native and cross compilers
What is pass by value in c?
What are the advantage of c language?
Explain what is the stack?
What is getch() function?
By using C language input a date into it and if it is right?
Why header file is used in c?