What causes a runtime error c++?


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

Post New Answer

More C++ General Interview Questions

How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?

0 Answers  


How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?

2 Answers   CTS,


What is pointer in c++ with example?

0 Answers  


How do pointers work?

0 Answers  


Explain how we implement exception handling in c++?

0 Answers  






What is c++ library?

0 Answers  


Can a program run without main?

0 Answers  


How do you declare A pointer to a function which receives nothing and returns nothing

0 Answers  


Can member functions be private?

0 Answers  


What do you mean by delegate? Can a user retain delegates?

0 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


Explain what you mean by a pointer.

0 Answers   TCS,


Categories