“Cómo tomar la entrada en C” Código de respuesta

Cómo obtener la entrada del usuario en C

#include <stdio.h>
//this is for storing numbers
int main(){
	
    int age; //this makes a vairable for you to store the value in
    printf("enter in your age: "); //this prints a prompt for the user
    scanf("%d", &age); //this takes in the argument given and stores it
                       //into the address of age

	return 0;
}
TheRubberDucky

Sintaxis para tomar la entrada en c

Integer: Input: scanf("%d", &intVariable); Output: printf("%d", intVariable);
Float: Input: scanf("%f", &floatVariable); Output: printf("%f", floatVariable);
Character: Input: scanf("%c", &charVariable); Output: printf("%c", charVariable);
Amused Aardvark

Cómo tomar la entrada en C

scanf("%d", &var);
Golden Horde

Respuestas similares a “Cómo tomar la entrada en C”

Preguntas similares a “Cómo tomar la entrada en C”

Más respuestas relacionadas con “Cómo tomar la entrada en C” en C

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código