Skip to content
Snippets Groups Projects
Commit 43d14b68 authored by Peter Gerwinski's avatar Peter Gerwinski
Browse files

Weitere Beispiele und "Screenshots" 24.10.2022

parent 00c8ba44
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
#define VIER 4
int main (void)
{
printf ("2 + 2 = %d\n", VIER);
return 0;
}
#include <stdio.h>
#define wuppdich printf
#define holla main
#define pruzzel return
#define VIER 4
int holla (void)
{
wuppdich ("2 + 2 = %d\n", VIER);
pruzzel 0;
}
#include <stdio.h>
#define VIER 2 + 2
int main (void)
{
printf ("2 + 3 * 4 = %d\n", 2 + 3 * VIER);
return 0;
}
#include <stdio.h>
#define VIER (2 + 2)
int main (void)
{
printf ("2 + 3 * 4 = %d\n", 2 + 3 * VIER);
return 0;
}
#include <stdio.h>
#define VIER (2 + 2));
int main (void)
{
printf ("2 + 3 * 4 = %d\n", 2 + 3 * VIER
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment