Skip to content

ki002.c

Problem Statement

Plan - checking for edge case

Metadata

Property Detail
Author Amit Dutta (amitdutta4255@gmail.com)
License MIT

Actions

Raw View on GitHub

💡 You can print or save this file by opening Raw and using your browser.

Source Code

#include <stdio.h>
int main()
{
    printf("Starting.....\n");

    for (int i = 1; ; i++)
    {
        printf("i = %d\n", i);
    }
    return 0;
}