A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

Write a program to make String in Upper case by using function in c

#include<stdio.h>
#include<string.h>
void display (char a[10])
{
    printf("%s",strupr(a));
   
}
int main()
{
 char name[10];

  gets(name);
 
  display(name);
return 0;  
}

LEARN TUTORIALS

.

.