Home | Computer Science
17.write a programme using integer with (-)

#include<stdio.h>
main()
{
int a,b,c,;
a=20;
b=3;
c=a-b;
printf("%d",c);
getch();
}

OUTPUT

18. Write a programme using integer with (*)

#include<stdio.h>
main()
{
int a,b,c,;
a=20;
b=3;
c=a*b;
printf("%d",c);
getch();
}

OUTPUT