Код C работает в Windows (скомпилирован с Visual Studio), но не компилируется в Linux (с использованием gcc) - PullRequest
1 голос
/ 19 июня 2011

В настоящее время я пытаюсь сделать очень простую C-программу для школы, которая создает массив из m целых чисел n (оба из которых определены пользовательским вводом) и либо возвращает местоположение начала массива, либо выдает сообщение об ошибке, если массив не может быть создан. Он прекрасно работает при компиляции с использованием Visual Studio, но когда я попытался скомпилировать его с помощью gcc, он выдает мне кучу сообщений об ошибках, и я просто не понимаю, что их вызывает.

Исходный код:

#include <stdio.h>
int *create_array(int n, int initial_value);

int main(){
    int *arr;
int num;
int numOfNum;

printf("Store this integer:\n");
scanf("%d", &num);

printf("Store the integer this amount of time:\n");
scanf("%d", &numOfNum);

arr = create_array(num, 1);

if(arr == NULL) printf("ERROR");
else printf("Array stored in this location: %p", arr);
    return 0;
}
int *create_array(int n, int initial_value){
int *pointer;
int i;

pointer = (int *) malloc(sizeof(int) * 10);

for(i = 0; i < n; i++){
    int *p;
    p = pointer;
    p += n*(sizeof(int));
    *p = initial_value;
    }

return pointer;
}

Ошибка от gcc:

q1.c: In function âmainâ:
q1.c:18: error: missing terminating " character
q1.c:19: error: ânotâ undeclared (first use in this function)
q1.c:19: error: (Each undeclared identifier is reported only once
q1.c:19: error: for each function it appears in.)
q1.c:19: error: expected â)â before âbeâ
q1.c:19: error: missing terminating " character
q1.c:20: error: missing terminating " character
q1.c:21: error: missing terminating " character
q1.c:39: error: expected declaration or statement at end of input

Ответы [ 2 ]

8 голосов
/ 19 июня 2011

Видя странные символы "нет", я подозреваю, что вы используете неправильную кодировку файлов.Попробуйте скопировать код в редактор файлов linux и сохранить его из этого редактора в новый файл.Попробуйте скомпилировать это.

1 голос
/ 19 июня 2011

Ваш код, в точности как вы его опубликовали, генерирует эти сообщения с моим gcc

6398652.c:4:5: error: function declaration isn’t a prototype [-Werror=strict-prototypes]
6398652.c: In function ‘main’:
6398652.c:4:5: error: old-style function definition [-Werror=old-style-definition]
6398652.c:18:3: error: format ‘%p’ expects argument of type ‘void *’, but argument 2 has type ‘int *’ [-Werror=format]
6398652.c: In function ‘create_array’:
6398652.c:25:3: error: implicit declaration of function ‘malloc’ [-Werror=implicit-function-declaration]
6398652.c:25:21: error: incompatible implicit declaration of built-in function ‘malloc’ [-Werror]
cc1: all warnings being treated as errors

Эта измененная версия компилируется чисто

#include <stdio.h>
#include <stdlib.h>

int *create_array(int n, int initial_value);

int main(void) {
  int *arr;
  int num;
  int numOfNum;

  printf("Store this integer:\n");
  scanf("%d", &num);

  printf("Store the integer this amount of time:\n");
  scanf("%d", &numOfNum);

  arr = create_array(num, 1);

  if (arr == NULL) {
    printf("ERROR\n");
  } else {
    printf("Array stored in this location: %p\n", (void*)arr);
  }
  return 0;
}

int *create_array(int n, int initial_value) {
  int *pointer;
  int i;

  pointer = malloc(10 * sizeof *pointer);

  for (i = 0; i < n; i++) {
    int *p;
    p = pointer;
    p += n*(sizeof *p);
    *p = initial_value;
  }

  return pointer;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...