Initial commit: C language learning code
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user