You are on page 1of 1

NOMBRE: Michelle Correa Flores FECHA: 27 de Noviembre del 2015

Nicolás Morocho Narváez


NRC: 4254
INGENIERO: Wellington Ernesto Valdivieso López

FUNDAMENTOS DE LA PROGRAMACIÓN

Ingresar e imprimir dos datos string

#include<stdio.h>

#include<string.h>

#include<conio.h>

char a, b;

main()

printf("INGRESE LA PRIMERA PALABRA:");

scanf("%ic",&a);

printf(&a);

printf("INGRESE LA SEGUNDA PALABRA:");

scanf("%c",&b);

printf(&b);

You might also like