ACHROMATIC STRING(PRINTING INITIALS)





Achromatic string (printing initials)
C program to print initials of any name 


#include<stdio.h>
int main(){
   char str[20];
   int i=0;
   puts("Enter a string");
   gets(str);
   printf("%c",*str);
   while(str[i]!='\0'){
       if(str[i]==' '){
            i++;
           printf("%c",*(str+i));
       }
       i++;
   }
   return 0;
}




No comments: