Programas Turbo C

  • November 2019
  • 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 Programas Turbo C as PDF for free.

More details

  • Words: 65
  • Pages: 1
programa para calcular area de triangulo. #include � #include <stdio.h>� � main()� {� int base, altura, resultado;� � clrscr();� printf("este programa calcula el el are de un tr�angulo");� printf("\n\n dame la base: ");� scanf("%d",&base);� printf("\n dame la altura: ");� scanf("%d",&altura);� resultado=(base*altura)/2;� printf("\n\nel area es: %d",resultado);� � getch();� return 0;� }� programa para imprimi saludo. #include <stdio.h> main() { clrscr(); printf("hola mundo\n"); getch (); return(0); }

Related Documents

Programas Turbo C
November 2019 0
Turbo C++ 3.0
May 2020 2
Turbo C Primer
June 2020 6
Practicas De Turbo C
November 2019 4