Is main() is used in the program,,see below example?
void main()
{
int i;
for(i=0;i<10;i++)
main();
}
Then what is the output of the program?
Answer Posted / parvathi
it cgoes into infinite loop
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Do pointers take up memory?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What does c mean in standard form?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What is pragma c?
What is storage class?
Tell me when would you use a pointer to a function?
What is file in c language?
What is the best way of making my program efficient?
How many levels of indirection in pointers can you have in a single declaration?
How can I pad a string to a known length?
FILE PROGRAMMING
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Is main is user defined function?