Answer Posted / sight
It's not necessary that every time faster loops only because
it's depends upon the problem.....
On this we take decision that it's faster working with loop
or recursion....
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
program to convert a integer to string in c language'
Is c procedural or object oriented?
How macro execution is faster than function ?
Is c is a high level language?
What is array of structure in c programming?
How many levels deep can include files be nested?
How can a number be converted to a string?
What is volatile keyword in c?
What does dm mean sexually?
Write a program to generate random numbers in c?
Which is better between malloc and calloc?
Write a C program to count the number of email on text
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is typeof in c?