What are run-time errors?
How do you define a string?
. Write a program to get a string and to convert the 1st letter of it to uppercase
why 'c' is called middle level language.
How can I automatically locate a programs configuration files in the same directory as the executable?
what is data structure
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is a macro in c preprocessor?
How will you allocate memory to a double pointer ?
What is the difference between #include and #include 'file' ?
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; }
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
application attempts to perform an operation?