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 |
How to implement variable argument functions ?
where do we use volatile keyword?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
write a c program to print "Welcome" without using semicolon in the whole program ??
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
how to convert an char array to decimal array
What is the data segment that is followed by c?
What is pass by reference in c?
What does sizeof return c?
difference between Low, Middle, High Level languages in c ?
differnce between do and do while
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....