fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}
above function is called as:
fun(10);
what will it print?
}
Answer Posted / megha
5
| Is This Answer Correct ? | 1 Yes | 15 No |
Post New Answer View All Answers
How is a pointer variable declared?
What are the types of unary operators?
What is wrong with this program statement?
Write a program to check armstrong number in c?
Was 2000 a leap year?
How pointer is different from array?
What do you mean by keywords in c?
What is double pointer?
Write a program on swapping (100, 50)
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Simplify the program segment if X = B then C ← true else C ← false
Write a program for finding factorial of a number.
Can we access array using pointer in c language?
What is uint8 in c?