Total of how many functions are available in c?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
good morining to all ,
C is full of functions.... that point am making it clear.. we cant even get any input or output without using functions...
printf();, scanf(); , getc();, are some of the well known fuctions...
i can say C has some 200 to 300 function approx. i dont know...
thank u
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / devanshu
hello
not coorect but aprocsimet 200-300 fuctuion in c
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / krishna
four types of functions available in c
1.with parameters with return type
2.with parameters without return type
3.without parameters with return type
4.without parameters without return type
| Is This Answer Correct ? | 1 Yes | 0 No |
What is an auto keyword in c?
in iso what are the common technological language?
Explain what is the difference between null and nul?
What is an expression?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
how to print value of e(exp1)up to required no of digits after decimal?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
What is the use of c language in real life?
WHAT IS LOW LEVEL LANGUAGE?
What is sorting in c plus plus?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
What is difference between array and structure in c?