f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / jasna.c
no output
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
int i=10; printf("%d %d %d", i, i=20, i);
How variables are declared in c?
Is linux written in c?
Are the variables argc and argv are local to main?
Difference between pass by reference and pass by value?
List the different types of c tokens?
Explain how do you print only part of a string?
Explain the difference between call by value and call by reference in c language?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Is r written in c?
Write a C program in Fibonacci series.
What is static identifier?
How can I ensure that integer arithmetic doesnt overflow?
What is the difference between malloc calloc and realloc in c?
List some of the static data structures in C?