17 lines
190 B
C
17 lines
190 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <math.h>
|
|
|
|
int main()
|
|
{
|
|
char c = 127;
|
|
int i = 255;
|
|
|
|
c = c + 1;
|
|
|
|
printf("c=%d,i=%d", c ,i);
|
|
|
|
return 0;
|
|
|
|
} |