What is c language used for?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a program for swapping two strings without using 3rd variable and without using string functions.
What is memcpy() function?
Explain what’s a signal? Explain what do I use signals for?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
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 will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is context in c?
How does #define work?
How can I read a binary data file properly?
How do I use void main?
why effort estimation is important?
What is enumerated data type in c?