what does ‘#include’ mean?
Can a pointer be static?
What is structure padding & expalain wid example what is bit wise structure?
What do you mean by scope of a variable in c?
What is the use of ?
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 does %c do in c?
What is call by reference in functions?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
pierrot's divisor program using c or c++ code
Can you think of a logic behind the game minesweeper.
Is c pass by value or reference?
How to avoid buffer overflow?