the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called
a) nested function
b) void function
c) recursive function
d) indifinite function
No Answer is Posted For this Question
Be the First to Post Answer
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
How can I find out how much free space is available on disk?
Function to find the given number is a power of 2 or not?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What is "Duff's Device"?
How does sizeof know array size?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Define circular linked list.
c program for searching a student details among 10 student details
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Why c is called object oriented language?