What are header files and what are its uses in C programming?
No Answer is Posted For this Question
Be the First to Post Answer
what is the flow of execution in cprogram? ex:printf();,scanf();
What are data structures in c and how to use them?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What is an auto keyword in c?
IS Doon college of Engn.. has good faculty
Tell me when is a void pointer used?
Define recursion in c.
Explain how can I convert a number to a string?
What is Full Form of C and Why We use C
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
Explain how do you view the path?
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