What are static variables?
Const char *p , char const *p What is the difference between the above two?
What are the different data types present in C++?
Can a program run without main?
What is meaning of in c++?
What is implicit conversion/coercion in c++?
What is the difference between structure and class?
What is object oriented programming (oop)?
What is dangling pointers?and what is memory leak?
Write a program that will count the number of digits in an input integer up to value MAX_VALUE (2147483647). Thus, for an input of 5837 the output should be 4 digits Make sure that your program works for the numbers 0, 1, and 10. For the number 0, the output should be 1 digit
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is function overloading c++?
Which field is used in c++?