The difference between printf and fprintf is ?
What does %d do in c?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
How can you restore a redirected standard stream?
64/square(4)
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; }
what is a void pointer?
how to copy a string without using c function
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Is exit(status) truly equivalent to returning the same status from main?
Explain function?
Explain what is the difference between a string and an array?
how to add numbers without using arithmetic operators.