I'm using the GCC version 5.3 compiler for the following program, written in Aptana:
#include <stdio.h>
void main(void)
{
int positivo = 32767;
int negativo = -32768;
printf("%d +1 é %d\n", positivo, positivo+1);
printf("%d -1 é %d\n", negativo, negativo-1);
}
With the following output:
Alreadyinthetextblock,withthefollowing:
How do I make the characters appear correctly?