APC-S-006.c (698B)
1 /* 2 * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 3 * Repo: https://github.com/notamitgamer/bsc 4 * License: MIT 5 */ 6 7 /* Write a program to print first 10 multiple of 5 */ 8 9 /* 10 * Compiler Note: This source code is specifically designed for compilation 11 * and execution within the ** Turbo C ** environment. 12 * 13 * Testing Disclaimer: Due to a lack of access to the required Turbo C 14 * compiler software, this code has not been formally compiled or tested. 15 */ 16 17 #include <stdio.h> 18 #include <conio.h> 19 20 void main() 21 { 22 clrscr(); 23 int a = 5, i = 1, res; 24 while (i <= 10) 25 { 26 res = a * i; 27 printf("%d * %d = %d\n", a, i, res); 28 i++; 29 } 30 getch(); 31 }