100% C prog to convert lowercase name into upper case

// prog to convert lowercase name into upper case
#include <stdio.h>
#include<string.h>
int main()
{
  char name[9];
  int i;
  printf("enter a name in lower case only without spaces:"); // these conditions are important
  scanf("%s",name);
  printf("\n name in lower case as entered by user is %s", name);
  printf("\n");
  for(i=0;name[i]!='\0';i++)
  {
      printf("%c",name[i]-32);
  }
  printf("\n1= okaTi");
}

ఔట్పుట్  తెర  మీద ఇలా..

enter a name:bharat
name is bharat
BHARAT
1= okaTi

కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)