↩ revert:
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
int main( )
|
||||
{
|
||||
FILE* fp;
|
||||
FILE *fp;
|
||||
|
||||
fp = fopen("tmp", "r");
|
||||
if (fp == NULL)
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user