How do you view the path?
No Answer is Posted For this Question
Be the First to Post Answer
main() { clrscr(); } clrscr();
Can u return two values using return keyword? If yes, how? If no, why?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Explain the array representation of a binary tree in C.
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
I need a sort of an approximate strcmp routine?
what is self refrential structure
how to write a bubble sort program without using temporary variable?
What is typedef struct in c?
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”