What are advantages and disadvantages of recursive
calling ?
Answers were Sorted based on User's Feedback
Answer / poonam yadav
by using this tag we call a function continuosly uptill
to specific condion
| Is This Answer Correct ? | 8 Yes | 24 No |
Answer / deepak soni
the advantage of recursion is
1). by using this tag we call a function continuosly uptill
to specific condion
| Is This Answer Correct ? | 3 Yes | 29 No |
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What are static functions?
how the compiler treats any volatile variable?Explain with example.
Can we use any name in place of argv and argc as command line arguments?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How to establish connection with oracle database software from c language?
Explain the advantages and disadvantages of macros.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
What is the use of the #include directive?
Hi, main() { } Is a user defined function or Built in Functionn
C program to find all possible outcomes of a dice?