Problem :- Write a C Program to Convert a person's name in Abbreviated .
Abbreviated Name :- Abbreviated Is A Sort name we can say that if your name is Ghanendra Pratap Yadav Then your Abbreviated (Sort Name ) Will be G.P.Yadav
See Also :- C++ Program to Convert a person's name in abbreviated
Solution :-
#include<stdio.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
char fname[20], mname[20], lname[20];
printf("Enter The First Name Middle Name & Last Name \n");
scanf("%s %s %s", fname, mname, lname);
printf("Abbreviated name: ");
printf("%c. %c. %s\n", fname[0], mname[0], lname);
return 0;
}
See Also :- Java Program to Convert a person's name in abbreviated
output:-
Abbreviated Name :- Abbreviated Is A Sort name we can say that if your name is Ghanendra Pratap Yadav Then your Abbreviated (Sort Name ) Will be G.P.Yadav
See Also :- C++ Program to Convert a person's name in abbreviated
Solution :-
#include<stdio.h>
int main()
{
/*Program By Ghanendra Yadav
Visit http://www.programmingwithbasics.com/
*/
char fname[20], mname[20], lname[20];
printf("Enter The First Name Middle Name & Last Name \n");
scanf("%s %s %s", fname, mname, lname);
printf("Abbreviated name: ");
printf("%c. %c. %s\n", fname[0], mname[0], lname);
return 0;
}
See Also :- Java Program to Convert a person's name in abbreviated
output:-
Why we use %c formet specifire we use %s it's mean we use string....so here why use %C?
ReplyDeleteI already answer. Please check Vivek Comment
DeleteThanks
Why we use %c formet specifire we use %s it's mean we use string....so here why use %C?
ReplyDeleteHello, Vivek
DeleteThe reason is very simple as you can see that in Abbreviated name we have to print the only first character of first name and middle name so for printing only one character of a string that is why we use %c in place of %s. I hope your doubt is clear now.
Thanks for comment Keep visit keep share and Keep Healthy.
Sir after printf("abbreviate name") line,
ReplyDeleteit should be scanf or printf?