main()
{
static int ivar=5;
printf("%d",ivar--);
if(ivar)
main();
}
Answers were Sorted based on User's Feedback
How are structure passing and returning implemented?
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
write a program to print infinte number
What is advantage of pointer in c?
program to print upper & lower triangle of a matrix
What is static volatile in c?
Is c an object oriented programming language?
What are data breakpoints?
When can a far pointer be used?
how to find the largest element of array without using relational operater?