In this code:
#include <stdio.h>
#include <stdlib.h>
int main() {
int x, y = 10;
//incrementa depois atribui
y = ++x;
printf("x = %d\n", x);
printf("y = %d\n", y);
system("pause");
return 0;
}
Compiled and executed in codeblock...
asked by
11.05.2015 / 13:48