↩ revert:

This commit is contained in:
lzy
2024-05-27 02:33:10 +08:00
parent 2336f88407
commit a277dec1fe
136 changed files with 606 additions and 606 deletions

View File

@@ -5,7 +5,7 @@
int main( )
{
FILE* fp;
FILE *fp;
fp = fopen("tmp", "r");
if (fp == NULL)

View File

@@ -2,9 +2,9 @@
int main(void)
{
int* p = NULL;
int *p = NULL;
int i;
p = (int*)malloc(sizeof(int));
p = (int *)malloc(sizeof(int));
if (p == NULL)
return -1;
printf("Hello world!\n");