función strupr() en c

La función strupr() se usa para convertir una string dada a mayúsculas.

Sintaxis:

char *strupr(char *str);

Parámetro:

  • str: Esto representa la string dada que queremos convertir a mayúsculas.

Devoluciones: Devuelve la string modificada obtenida después de convertir los caracteres de la string dada str a mayúsculas.

Los siguientes programas ilustran la función strupr() en C:

Ejemplo 1:-

// c program to demonstrate
// example of strupr() function.
#include<stdio.h>
#include<string.h>
  
int main()
{
    char str[ ] = "geeksforgeeks is the best";
    //converting the given string into uppercase.
    printf("%s\n", strupr (str));
    return  0;
}

Producción:

GEEKSFORGEEKS IS THE BEST

Ejemplo 2:-

// c program to demonstrate
// example of strupr() function.
  
#include<stdio.h>
#include <string.h>
  
int main()
{
  char str[] = "CompuTer ScienCe PoRTAl fOr geeKS";
  
  printf("Given string is: %s\n", str);
  
  printf("\nstring after converting to the uppercase is: %s", strupr(str));
  return 0;
}

Producción:

Given string is: CompuTer ScienCe PoRTAl fOr geeKS

string after converting to the uppercase is: COMPUTER SCIENCE PORTAL FOR GEEKS


Nota:
esta es una función no estándar que solo funciona con versiones anteriores de Microsoft C.

Publicación traducida automáticamente

Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *