#include int main(){ int a, b; // deklariramo spremenljivke a = 12; // nastavimo a na 12 b = 16; // nastavimo b na 16 printf("%d, ostane %d\n", a / b, a % b); return 0; } // 12 / 16 = 0, ostane 12 // 12 / 8 = 1, ostane 4 // operacije +, *, -, /, % // shift 3 - # // altgr , - < // altgr . - > // shift 8 - ( // shift 9 - ) // altgr B - { // altgr N - } // shift , - ; // shift 2 - " // altgr Q - \ . // shift 5 - % // shift + - *