belongs to collection: Basic C Programs for Practice
Write a C Program to Convert a person's name in Abbreviated .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.Yada
#include<stdio.h> int main() { 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; }
Output:
Enter The First Name Middle Name & Last Name
Ghanendra Pratap Yadav
Abbreviated name: G. P. Yadav
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
Enter The First Name Middle Name & Last Name
Ghanendra Pratap Yadav
Abbreviated name: G. P. Yadav
need an explanation for this answer? contact us directly to get an explanation for this answer