which header file contains main() function in c?
Answer Posted / a
if it is just a naming convention then how can it have
return type and arguement like a function...
plz don't misguide the ppls
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Array is an lvalue or not?
What is the function of this pointer?
How can I use a preprocessorif expression to ?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
How do you print an address?
Explain what are run-time errors?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Is a house a shell structure?
write a progrmm in c language take user interface generate table using for loop?
Describe newline escape sequence with a sample program?
What is data types?
What is actual argument?
How do I get a null pointer in my programs?
What are the benefits of c language?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings