What are static variables?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Const char *p , char const *p What is the difference between the above two?

0 Answers   TCS,


What are the different data types present in C++?

4 Answers  


Can a program run without main?

0 Answers  


What is meaning of in c++?

0 Answers  


What is implicit conversion/coercion in c++?

1 Answers  


What is the difference between structure and class?

0 Answers  


What is object oriented programming (oop)?

0 Answers  


What is dangling pointers?and what is memory leak?

5 Answers  


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

2 Answers  


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"?

6 Answers   CSC,


What is function overloading c++?

0 Answers  


Which field is used in c++?

0 Answers  


Categories