06/02/2023

C Program to Convert a Person's Name in Abbreviated Form

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.

C Program to Convert a Person's Name in Abbreviated Form

See Also: C++ 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


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.
Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: