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 |
What is header file in c?
Software Interview Questions
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
When is an interface "good"?
When do we get logical errors?
How can I write a function that takes a format string and a variable number of arguments?
How can we allocate array or structure bigger than 64kb?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
What is the difference between realloc() and free()
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
How can I return multiple values from a function?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.