Is using exit() the same as using return?
No Answer is Posted For this Question
Be the First to Post Answer
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Write a C function to search a number in the given list of numbers. donot use printf and scanf
In c programming language, how many parameters can be passed to a function ?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
what is use of loop?
How the processor registers can be used in C ?
Explain heap and queue.
write a prgram of swapping with 2 valiables
write a method for an array in which it can display the largest n next largest value.
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What is the -> in c?