Home | Computer Science
15.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

16. 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