What is difference between scanf and gets?
No Answer is Posted For this Question
Be the First to Post Answer
What does sizeof return c?
what is the self-referential structure?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Can you pass an entire structure to functions?
What does void main return?
How can I list all of the predefined identifiers?
who is the father of C Language?
20 Answers CTS, UST,
What is wild pointer in c with example?
What is the 'named constructor idiom'?
How to removing white spces in c programming only bu using loops
What happens if you free a pointer twice?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”