Skip to content

apc-s-002.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 = 5, b = 5, c = 10;
    printf("a = b = %d\n", a == b);
    printf("a > b = %d\n", a > b);
    printf("a < b = %d\n", a < b);
    return 0;
}