C Program to Demonstrate the Working of Keyword long - Source Code, Output & Execution Flow

C Program to Demonstrate the Working of Keyword long

This tutorial explains c program to demonstrate the working of keyword long with C source code, sample output, and step-by-step execution flow.

#include <stdio.h>
int main() {
    long number = 1234567890L;
    long long bigNumber = 9223372036854775807LL;
    printf("long value = %ld
", number);
    printf("long long value = %lld
", bigNumber);
    return 0;
}
long value = 1234567890
long long value = 9223372036854775807

In this program, the input is read first when required, the core logic is applied step by step, and the final result is displayed using printf(). Follow the execution flow beside the code to understand how each statement contributes to the output.