What is the size of a union variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of bitwise operator?
What is the use of header files?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
Explain void pointer?
Suggesting that there can be 62 seconds in a minute?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
wat is the difference between array and pointer?
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 the difference between ‘g’ and “g” in C?
What are enumerated types?
What are the application of void data type in c?
Why is #define used?