“input pengguna c” Kode Jawaban

cara mendapatkan input pengguna di 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

Sintaks untuk mengambil input di 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

cara mengambil input di c

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

Jawaban yang mirip dengan “input pengguna c”

Pertanyaan yang mirip dengan “input pengguna c”

Lebih banyak jawaban terkait untuk “input pengguna c” di C++

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya