KI002.c (324B)
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 8 /* Plan - checking for edge case */ 9 10 #include <stdio.h> 11 int main() 12 { 13 printf("Starting.....\n"); 14 15 for (int i = 1; ; i++) 16 { 17 printf("i = %d\n", i); 18 } 19 return 0; 20 }