Why #include is used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to check prime number in c programming?
What is calloc()?
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
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
to get a line of text and count the number of vowels in it
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
Can a function argument have default value?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
Write a C program to perform some of the operation which can be performed using Single linked list
give an example of type casting by a simple c program
What does c mean in basketball?
what is the return type of printf