Answer Posted / deepak verma
in c programing language in indirect recursion there are two function ,but when one function call to second and second call to first under condtion .when condition is false then the function is terminate.
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is the use of c language in real life?
What are the disadvantages of a shell structure?
Not all reserved words are written in lowercase. TRUE or FALSE?
What is masking?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What the advantages of using Unions?
What is the value of c?
What does it mean when the linker says that _end is undefined?
What is the general form of a C program?
Here is a good puzzle: how do you write a program which produces its own source code as output?
why do some people write if(0 == x) instead of if(x == 0)?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
what do the 'c' and 'v' in argc and argv stand for?