What is auto keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between text and binary i/o?
What is a pointer and how it is initialized?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
How the processor registers can be used in C ?
Write a program in c using only loops to print * * * * * *******
write a proram to reverse the string using switch case?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
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 .obj file in c?
can we access one file to one directory?
Explain demand paging.