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
What is adt in c programming?
difference between native and cross compilers
What are extern variables in c?
What is the difference between null pointer and wild pointer?
What are structure types in C?
what are enumerations in C
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What does d mean?
How can I determine whether a machines byte order is big-endian or little-endian?
Explain the ternary tree?
Why are algorithms important in c program?
In which language linux is written?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.