Skip to content

apc-s-001.c

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() {
    int a = 9, b = 4, c;
    c = a + b;
    printf("A + B = %d\n", c);
    c = a / b;
    printf("A / B = %d\n", c);
    c = a % b;
    printf("A %% B = %d\n", c);
    return 0;
}