在C中声明变量

时间:2015-12-16 14:45:53

标签: c

我很难在C中声明我的变量。编译器在令牌之前显示消息“预期的构造函数析构函数或类型转换。”我做错了什么?

#include <stdio.h>

int count =0;
int abc;
ABC; 
a = 19, b = 27, c = 3;

a = 4 + 5 * 3;
b = (4 +5) * 3;
c = 25 -(2 * (10 + (8 / 2)));

main {
   printf("Enter a value please\n");
   scanf("%d, , \n");
   return 0;
}

2 个答案:

答案 0 :(得分:6)

这是一个重写,显示了如何解决各种问题:

#include <stdio.h>

int count = 0;     // declarations and intitializations are allowed at file
                   // scope (that is, outside of any function body).  The
                   // storage for count will be set aside at program start
                   // and held until the program terminates.  
                   //
                   // count is visible to all functions defined within this
                   // file, and will be visible to other files compiled and
                   // linked into the same program.  

int main( void ) { // Implicit typing of functions is no longer allowed as of C99,
                   // and it was never good practice to begin with. 
                   // IOW, the compiler will not assume a return type of
                   // int if a type specifier is missing.  main always
                   // returns int, and either takes 0 or 2 arguments.

  int a, b, c;     // int abc; declares a *single* variable named "abc", 
                   // not three variables named "a", "b", and "c".  
                   // Storage for these variables will be set aside at
                   // function entry and held until the function exits.
                   //
                   // None of a, b, or c are visible outside of the
                   // function body.            

                   // ABC has not been defined anywhere; it's not clear
                   // what the intent was behind ABC;

  a = 19;          // While not illegal, a = 19, b = 27, c = 3; is not the best style
  b = 27;          // in the world; it's better to make these three separate statements 
  c = 3;           // Note that assignment statements (like any other executable 
                   // statement) are not allowed outside of a function body.  


  a = 4 + 5 * 3;                   // fine
  b = (4 +5) * 3;                  // fine
  c = 25 -(2 * (10 + (8 / 2)));    // fine

  printf("Enter a value please\n"); // fine

  scanf("%d", &a); // Each conversion specifier in a scanf call needs a corresponding 
                   // argument to write the input value to, and the argument needs
                   // to be of the correct type.  %d expects the corresponding 
                   // argument to have type "int *" (pointer to int).  The expression
                   // "&a" gives the address of the variable "a", and the type 
                   // of the expression is "int *".  So, this statement will read an 
                   // integer value from standard input and store it to a.

  return 0;
}

答案 1 :(得分:5)

  1. 您无法在函数外部编写a = 19, b = 27, c = 3;等分配。

  2. int count = 0;是全局变量的初始化,因此允许。

  3. ABC;除非ABC#define为数字,否则也毫无意义,即使这样,也会成为无操作。

  4. main格式错误。您需要将其写为int main()并确保返回值。

  5. 最后,您的scanf参数列表不正确。请查阅文档。

  6. 研究C. Kernighan&amp; amp;的介绍是个好主意。里奇是一本很好的书。