Quick actions

cmd+k|ctrl+k

Navigation

Languages

ak - biola

Snippet info

Language

C

Visibility

public

Author

biolaa

Created

2025-05-02T04:39:43.899872Z

Updated

2025-05-02T04:39:43.899872Z

#include <stdio.h>

int main(){ //sebagai pembuka dalam penulisan program c
    int x = 4, y =6; //pengisian nilai
    if (x < y) { //operator pembanding
        printf("x kurang dari y\n"); //untuk mencetak nilai
    }
return 0;
}
INFO