Why is void main used?
No Answer is Posted For this Question
Be the First to Post Answer
what is an inline function?
What type is sizeof?
regarding pointers concept
can anyone suggest some site name..where i can get some good data structure puzzles???
What are global variables and how do you declare them?
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
What is extern keyword in c?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
write a program which will count occurance of a day between two dates.
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Explain how can a program be made to print the line number where an error occurs?
What is C++