What are static and dynamic type checking?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C/C++ program to show the result of a stored procedure "PROC_RESET_MAIL" on database "USER_NOTIFY".
2 Answers ABC, Accenture, DataLand, HCL, Webyog,
What is the difference between reference and pointer?
what is meaning of isa and hsa
Difference between inline functions and macros?
What is general form of pure virtual function? Explain?
How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
When a function is made inline. Write the situation where inline functions may not work.
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What are references in c++?
Write a C++ program that asks the user to choose a number between 1 and 1000. Then, your program should be able to guess the number by asking the user no more than 10 yes/no questions. Use a while loop in your program
what are the iterator and generic algorithms.
What is the difference between global int and static int declaration?