STATIC C program that add three numbers - 6 Players blogs for technology

give us your feedback

People Online

Breaking

ads

Post Top Ad

Sunday, June 16, 2019

STATIC C program that add three numbers

#include <stdio.h>
#include <stdlib.h>

int main()
{
   int a=2,b=3,c=4,d;
   /*STATIC*/
   d=a+b+c;
   printf("\n\t the sum of three numbers  are = %d",d);
    return 0;
}

The Output

the sum of three numbers are = 9

No comments:

Post a Comment

ads1

Post Top Ad