“C Ausgang” Code-Antworten

So erhalten Sie Benutzereingaben in 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

C Ausgang

#include <studio.h>
int main()
{
    // Display the string inside quotations
    printf("C Programming")
    return 0;
}
Marlon Oquina

Ähnliche Antworten wie “C Ausgang”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen