• Lenguaje

    C

  • Descripción

    Pedir el nombre y presentarlo en pantalla

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    char su_nombre[63];
    printf ("Ingresa el su nombre: ");
    scanf ("%[^\r\n]", su_nombre);
    (void) getchar ();
    printf ("Su nombre: %s\n", su_nombre);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}