how to capitalise first letter of each word in a given
string?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How do I send escape sequences to control a terminal or other device?

0 Answers  


Is there any book to know about Basics of C Language?

4 Answers  


Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff

0 Answers  


consagous technology placement paper

3 Answers   Consagous, Sypra,


What does the error 'Null Pointer Assignment' mean and what causes this error?

0 Answers   TISL,






FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

0 Answers   Wilco,


Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .

2 Answers   Oracle,


why division operator not work in case of float constant?

2 Answers  


How does struct work in c?

0 Answers  


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

0 Answers   Wilco,


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

0 Answers  


write a program to print data of 5 five students with structures?

0 Answers  


Categories