SlideShare a Scribd company logo
UNIVERSIDAD FERMIN TORO
VICERECTORADO ACADEMICO
FACULTAD DE INGENIERIA
ESCUELA DE TELECOMUNICACIONES

COMPUTACION PARA INGENIERO
PROGRAMA QUE SUMA Y MULTIPLICA DOS NUMEROS DECIMALES
UTILIZANDO FUNCIONES

Armando Henriquez
C.I: 18155429
CABUDARE, NOVIEMBRE 2013.
# include<stdio.h>
# include <stdlib.h>
# include<string.h>
# include<conio.h>
# include<ctype.h>
void Eval(char x){
if ((x>='A')&&(x<='Z'))
printf("%s","CARACTER ALFABETICO");
if ((x>='a')&&(x<='z'))
printf("%s","CARACTER ALFABETICO");
if ((x>='0')&&(x<='9'))
printf("%s","digito numerico");
}
int main()
{
char x;
printf("INTRODUZCA EL CARACTER A EVALUARn ");
scanf("%s",&x);
Eval(x);
getche();
}

More Related Content

PPTX
C programming codes for the class assignment
DOCX
C Language Programs
PDF
Bcsl 033 data and file structures lab s2-1
PDF
Positive (2)
PDF
Bcsl 033 data and file structures lab s2-2
PDF
PPTX
RTF
control stucture in c language
C programming codes for the class assignment
C Language Programs
Bcsl 033 data and file structures lab s2-1
Positive (2)
Bcsl 033 data and file structures lab s2-2
control stucture in c language

What's hot (14)

PDF
Bcsl 033 data and file structures lab s1-1
DOCX
programa suma y multiplica
PDF
Creative Coding 1 - 2 Variables
DOCX
1 (1)
DOCX
Dti2143 lab sheet 9
PDF
Progr2
DOC
Palindrome number program c
DOC
Add digits of number in c
PDF
Functions And Graphs Part 1
PDF
Introduction of VAE
PDF
C programming
PDF
Numerical Analysis lab 4
DOCX
Financialmodeling
Bcsl 033 data and file structures lab s1-1
programa suma y multiplica
Creative Coding 1 - 2 Variables
1 (1)
Dti2143 lab sheet 9
Progr2
Palindrome number program c
Add digits of number in c
Functions And Graphs Part 1
Introduction of VAE
C programming
Numerical Analysis lab 4
Financialmodeling
Ad

Viewers also liked (14)

PDF
69. synthesis, ex vivo and in silico studies of 3 cyano-2-pyridone derivative...
PPT
Our indiaivf powerpoint
DOCX
Hola
PPT
Front cover analysis 2
PPT
Petrologi 5-nomenklature
DOCX
Orientacion: Tipos de Aprendizaje
PPT
Istoryky
DOCX
Pagina 53 a 56 conflicto del canal de beagle
PPTX
Apenas un tiempo despues
PPT
Petrologi 8-sedimen
PPSX
Valoralandia
PPT
Petrologi 9-klastika
PPT
I patti parasociali nelle s.p.a.
DOCX
Pagina 52 doctrina de seguridad nacional canal encuentro
69. synthesis, ex vivo and in silico studies of 3 cyano-2-pyridone derivative...
Our indiaivf powerpoint
Hola
Front cover analysis 2
Petrologi 5-nomenklature
Orientacion: Tipos de Aprendizaje
Istoryky
Pagina 53 a 56 conflicto del canal de beagle
Apenas un tiempo despues
Petrologi 8-sedimen
Valoralandia
Petrologi 9-klastika
I patti parasociali nelle s.p.a.
Pagina 52 doctrina de seguridad nacional canal encuentro
Ad

Programa

  • 1. UNIVERSIDAD FERMIN TORO VICERECTORADO ACADEMICO FACULTAD DE INGENIERIA ESCUELA DE TELECOMUNICACIONES COMPUTACION PARA INGENIERO PROGRAMA QUE SUMA Y MULTIPLICA DOS NUMEROS DECIMALES UTILIZANDO FUNCIONES Armando Henriquez C.I: 18155429 CABUDARE, NOVIEMBRE 2013.
  • 2. # include<stdio.h> # include <stdlib.h> # include<string.h> # include<conio.h> # include<ctype.h> void Eval(char x){ if ((x>='A')&&(x<='Z')) printf("%s","CARACTER ALFABETICO"); if ((x>='a')&&(x<='z')) printf("%s","CARACTER ALFABETICO"); if ((x>='0')&&(x<='9')) printf("%s","digito numerico"); } int main() { char x; printf("INTRODUZCA EL CARACTER A EVALUARn "); scanf("%s",&x); Eval(x); getche(); }