What is null pointer and void pointer and what is their use?
No Answer is Posted For this Question
Be the First to Post Answer
What is a terminating character in c++?
Which ide is best for c++?
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
How do you remove an element from a set in c++?
what is pre-processor in C++?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
What is binary search in c++?
Can you pass an array to a function in c++?
write infinite loop in C++ which does not use any variable or constant?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What is an Object/Instance?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal