ABHISHEK JHA

Student at KIIT Bhubaneswar

c program

#include<stdio.h> void main() { int i=10; while(i>0) { printf("%d",i); i--; } return 0; }

c program

#include<stdio.h> void main() { int a=7,b=6; printf("%d\n",a*b); }

c program

#include<stdio.h> void main() { printf("Hello World"); return 0; }

c program

#include<stdio.h> void main() { int n,i; scanf("%d",&n); for(i=0;i<10;i++) { printf("%d",n*i); } return 0; }

c program

#include<stdio.h> void main() int n,r,s=0; scanf("%d",&n); while(n>0) { r=n%10; s=s+r; n=n/10; } printf("the sum of digits is %d",s); }

c program

#include<stdio.h> void main() { int i; while(i<11) { printf("%d",i); i++; } return 0; }

c program

#include<stdio.h> void main() { int n,r,s=0; scanf("%d",&n); while(n!=0) { r=n%10; s=s*10+r; n=n/10; } printf("%d",s); return 0; }

c program

#include<stdio.h> void main() { int a=8,b=2; printf("%d\n",a%b); }

c program

#include<stdio.h> void main() { int a=9,b=7; printf("%d\n",a-b); }

c program

#include<stdio.h> void main() { int a,b; a=5,b=8; printf("%d\n",a+b); }

c program

#include<stdio.h> void main() { int a=8,b=9; printf("%d\n",a/b); }

c program

#include<stdio.h> int main() { int a,b; a=10; b=29; printf("the sum is%d",a+b); return 0; }