“penambahan dalam c” Kode Jawaban

penambahan dalam c

/*Program for adding two numbers*/
#include <stdio.h>
int main(){
	int a, b, sum; //declare the variables that will be used, a will store the first number, b second number and sum, the sum.
    printf("Enter the first number: \n"); //Prompts user to enter the first number.
    scanf("%d", &a);//Accepts input and saves it to variable a
    printf("Enter the second number: \n");
    scanf("%d", &b);
    sum = a + b; //Formular to add the two numbers.
    printf("Sum is %d", sum);
}
VinCoD

tambahan.C

#include<conio.h>
#include<stdio.h>
{
int a,b;
a=2;
b=10;
a=a+b;
printf("%d",&a);
getch();
}
Misty Millipede

penambahan dua angka di c

//test
Colorful Crossbill

Jawaban yang mirip dengan “penambahan dalam c”

Pertanyaan yang mirip dengan “penambahan dalam c”

Lebih banyak jawaban terkait untuk “penambahan dalam c” di C

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya