Actividad 2.docx

  • Uploaded by: Eri Almonte
  • 0
  • 0
  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Actividad 2.docx as PDF for free.

More details

  • Words: 149
  • Pages: 2
UNIVERSIDAD ABIERTA PARA ADULTOS (UAPA)

Nombre: Eri J. Almonte Belliard

Matricula: 17-5413

Asignatura: Programación 1

Facilitador: Diogenes Martinez.

Fecha: 19/03/2019

Santiago, República Dominicana

Para esta unidad II, debes crear un programa en lenguaje C. 1) Declara las siguientes variables: matricula del tipo de datos int nombre del tipo de datos string ó char[] apellido del tipo de datos string ó char[] 2) Con las sentencias printf() y Scanf(), Imprime los letreros y lee los variables. Entre Matricula ..: Entre Nombre ..: Entre Apellido ..: 3) Al final debes concatenar las tres variables, es decir, mostrar en pantalla el contenido de matricula, nombre y apellido en una sola línea.

#include <stdio.h> #include <stdlib.h>

int main(int argc, char *argv[]) { int matricula; char nombre[20]; char apellido[20]; printf("Entre Matricula ..: "); scanf("%d",&matricula); printf("Entre Nombre ..: "); scanf("%s",&nombre); printf("Entre Apellido ..: "); scanf("%s",&apellido); printf("\nHola %s %s tu matricula es %d",nombre, apellido,matricula ); }

Related Documents

Actividad
May 2020 53
Actividad
October 2019 65
Actividad
December 2019 85
Actividad
May 2020 45
Actividad
May 2020 54
Actividad
November 2019 38

More Documents from ""