f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / xx
no output
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Differentiate Source Codes from Object Codes
Write a program of prime number using recursion.
How #define works?
What are the types of data structures in c?
Explain the Difference between the New and Malloc keyword.
What is scope rule of function in c?
Tell me with an example the self-referential structure?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is a list in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is an identifier?
Write a code of a general series where the next element is the sum of last k terms.
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is the best style for code layout in c?