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
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Tell me the use of bit field in c language?
Name the language in which the compiler of "c" in written?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Is it possible to run using programming C for Java Application?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What are compound statements?
what is meant by c
What does c mean in standard form?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39