Why is the function main() special?


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

Post New Answer

More C++ General Interview Questions

List the special characteristics of constructor.

0 Answers  


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

1 Answers  


What is a syntax in c++?

0 Answers  


What is the use of data hiding?

0 Answers  


Differences between private, protected and public and give examples.

0 Answers  






What is vector pair in c++?

0 Answers  


Explain the use of vtable.

0 Answers  


What is abstraction with real time example?

0 Answers  


Why c++ is created?

0 Answers  


If I is an integer variable, which is faster ++i or i++?

0 Answers  


What is the difference between the functions memmove() and memcpy()?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Categories