what is ans for this
scanf(%%d",c);
What compilation do?
7 Answers Geometric Software, Infosys,
Can i use “int” data type to store the value 32768? Why?
c program to manipulate x=1!+2!+3!+...+n! using recursion
What is array in c with example?
hi how to convert program from notepad to turboc editor can u please help me
I need previous papers of CSC.......plz help out by posting them.......
What is bin sh c?
Which is the memory area not included in C program? give the reason
What is realloc in c?
how can i print "hello"
How can I find the day of the week given the date?
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; }