Add invested
Unusable, full with adds. No thanks.
Outputs are wrong
Many of the outputs are wrong calculated:
#include <stdio.h>
int main() {
int a = 9, b = 5;
int result = a + 5 * b;
printf("result = %d\n", result);
return 0;
}
Output is 34 instead of 24 like it’s written in the app
#include <stdio.h>
int main() {
int a = 9, b = 5;
int result = a + 5 * b;
printf("result = %d\n", result);
return 0;
}
Output is 34 instead of 24 like it’s written in the app










