Why doesnt this code work?
No Answer is Posted For this Question
Be the First to Post Answer
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is 1f in c?
How to removing white spces in c programming only bu using loops
what is a stack
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
who will call your main function in c under linux?
write a program in c to print **** * * * * ****
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 do the 'c' and 'v' in argc and argv stand for?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
Explain what is operator promotion?
What is sorting in c plus plus?