Write a C Program to Convert a Person's Name in Abbreviated Form. 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
See Also: Java Program to Convert a person's name in abbreviated
C Program to Convert a Person's Name in Abbreviated
#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 and 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
Convert a Person's Name in Abbreviated Output
All C Programs for Practice PDF Free with solutions in single care but before that, We are Welcoming you to the c programs practice and solution page.
0 Comments: