Why main function is special give two reasons?
No Answer is Posted For this Question
Be the First to Post Answer
In c programming language, how many parameters can be passed to a function ?
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; }
Why doesnt the call scanf work?
What is getche() function?
How can I invoke another program from within a C program?
what is a pointer
4 Answers Bank Of America, TCS,
how to find string length wihtout using c function?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the output of printf("%d", printf("Hello"));?
What is the meaning of 2d in c?
what do structure language means?
What is a method in c?