Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* A simple C program */
  2. #include<stdio.h>
  3. #include<conio.h>
  4. main()
  5. {
  6.     Int A, B, C;
  7.     A = 10;
  8.     B = 20;
  9.     C = A + B;
  10.     Printf(ā€œ%dā€,C);
  11.     getch();
  12. }