fun(int x)
{
if(x > 0)
fun(x/2);
printf("%d", x);
}
above function is called as:
fun(10);
what will it print?
}
Post New Answer View All Answers
Tell me is null always defined as 0(zero)?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Write a Program to accept different goods with the number, price and date of purchase and display them
What is the argument of a function in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is pointer & why it is used?
Is calloc better than malloc?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Explain the properties of union.
Why shouldn’t I start variable names with underscores?
Can you think of a logic behind the game minesweeper.
Why do we use int main instead of void main in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
All technical questions