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

Post New Answer

More C Interview Questions

How can you read a directory in a C program?

0 Answers  


Is struct oop?

0 Answers  


Write a code to determine the total number of stops an elevator would take to serve N number of people.

0 Answers   Expedia,


How to get string length of given string in c?

0 Answers  


What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none

2 Answers  


Explain what does the format %10.2 mean when included in a printf statement?

0 Answers  


What is the default value of local and global variables in c?

0 Answers  


What is a example of a variable?

0 Answers  


hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a

1 Answers  


What is #pragma statements?

0 Answers  


How many main () function we can have in a project?

0 Answers  


Explain the Difference between the New and Malloc keyword.

0 Answers   InterGraph,


Categories