What's the total generic pointer type?
No Answer is Posted For this Question
Be the First to Post Answer
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
What is New modifiers?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
Program to write some contents into a file using file operations with proper error messages.
Can two or more operators such as and be combined in a single line of program code?
Explain the use of keyword 'register' with respect to variables.
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What are the rules for the identifier?
What is difference between function overloading and operator overloading?
What are data breakpoints?
can we print any string without using terminator?