C Language - 7 feb 2021 - Simple Program

 



#include <stdio.h>

#include <conio.h>

int main ()

{


int a, b;

a=15;

b=84;

printf ("a + b = %d \n", a+b);

printf ("a*b =  %d\n", a*b);



// Code ScreenShot:




Comments

Popular Posts