🪟Output

Introduction

In C, output is typically displayed using the printf function.

Example: Printing Output

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}

Last updated

Was this helpful?