Ticker

6/recent/ticker-posts

Simple Addition for two numbers

 Addition of Two numbers


#include <stdio.h>


int main() {

    int i=10,j=20,add;

    add=i+j;

    

    printf("addition of two numbers is = %d\n",add);


    return 0;

}


output:-

addition of two numbers is = 30

కామెంట్‌ను పోస్ట్ చేయండి

0 కామెంట్‌లు