C Programming Interview Questions PDF Download
C Programming Interview Questions PDF Download
C Programming Interview Questions PDF Download
Answer: Intern
8. What is Recursion?
Answer: Recursion is the process of calling of function Itself within that
same function is called Recursion.
}
return 0;
#include<stdio.h>
int main()
{
int a=5;
int b=2;
if(a>b)
printf(" A is greater ");
printf(" Good ");
else
printf(" a is not greater");
printf(" Nice ");
return 0;
}
#include<stdio.h>
#include<math.h>
int main()
{
int a=2;
int b= pow(a,5);
printf("%d", printf("%d",b));
}
Output: 322