Home | Computer Science
1.Write a programme to print Hello.

#include<stdio.h>
main(){
clrscr();
printf("Hello");
getch();
}

OUTPUT

2.Write a programme using int.

#include<stdio.h>
main()
{
int b;
b=10;
printf("%d",b);
getch();
}

OUTPUT