1.Write a programme to print Hello. #include<stdio.h> main(){ clrscr(); printf("Hello"); getch(); }
2.Write a programme using int. #include<stdio.h> main() { int b; b=10; printf("%d",b); getch(); }
PREVIOUS NEXT