User Tools

Site Tools


qna:lab-session:code4

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

qna:lab-session:code4 [2024/04/25 10:10] (current)
xallos created
Line 1: Line 1:
 +<code c>#include <stdio.h>
  
 +int main() {
 +    char i, j, k, l;
 +
 +    printf("%i %i %i %i\n", i,j,k,l);
 +    i=126;
 +    printf("%i\n", i);
 +    i++;
 +    printf("%i\n", i);
 +    i++;
 +    printf("%i\n", i);
 +
 +    printf("%% => %d\n", 15 % 8);
 +
 +    return 0;
 +}</code>
qna/lab-session/code4.txt ยท Last modified: 2024/04/25 10:10 by xallos