Answer Posted / shani jaiswal
main()
{
static int i=0;
printf("%d",i);
i++;
main();
return 0;
}
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
Why is c called c?
What is the significance of scope resolution operator?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Explain how can you tell whether a program was compiled using c versus c++?
Place the #include statement must be written in the program?
What are categories used for in c?
please send me the code for multiplying sparse matrix using c
what are the different storage classes in c?
Are the expressions * ptr ++ and ++ * ptr same?
What are pragmas and what are they good for?
What is the use of void pointer and null pointer in c language?
Differentiate between null and void pointers.
What is indirection in c?
What is bin sh c?
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..