How do I use void main?
No Answer is Posted For this Question
Be the First to Post Answer
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Are there namespaces in c?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
What is difference between constant pointer and constant variable?
What is pointers in c?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What should malloc() do?
What are the advantages of c preprocessor?
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 output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
write a program in C to swap two variables
Who developed c language and when?