`
yaojingguo
  • 浏览: 208001 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Array Initialization in C

 
阅读更多

#include <stdio.h>

int array[10] = {
	[7] = 700,
};

int main(int argc, const char *argv[]) {
	printf("%d\n", array[7]);
	return 0;
}
 
分享到:
评论

相关推荐

    实验三:数组及其应用.doc

    The syntax for declaring a one-dimensional array in C is as follows: `int a[5];` This declares an array `a` of size 5, which can store 5 integer values. 二维数组 A two-dimensional array is an ...

    C语言常见错误查询,查询运行时出现的错误

    例如,`a + b * c`可以写成`(a + b) * c`或`a + (b * c)` Ambiguous symbol 在C语言中,我们可能会使用一些ambiguous symbol,例如`i`可能是整数也可能是浮点数。这时候我们需要使用明确的类型说明符来避免错误。 ...

    sun存储3510手册

    - **用户权利**:对于美国政府用户,适用标准的Sun Microsystems, Inc. 许可协议以及联邦采购条例(FAR)及其补充规定。 - **免责声明**:文档中的所有内容均按“原样”提供,不包含任何形式的明示或暗示条件、陈述或...

    常见C语言错误提示信息.doc

    5. **Array size too large**:数组大小超过了C语言的限制,通常32位系统中最大为4GB。 6. **Bad character in parameters**:参数中包含非字母、数字或下划线的非法字符。 7. **Bad file name format in include ...

    c语言出错信息汇总

    5. **Array size too large**:数组大小超过了C语言允许的最大值,通常32位系统下最大为4GB。 6. **Bad character in parameters**:参数中包含非法字符,C语言只接受字母、数字和下划线。 7. **Bad file name ...

    servlet2.4doc

    Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked. doFilter(ServletRequest, ...

    最全的c语言错误提示

    Illegal initialization (非法初始化) 当使用非法的方式初始化变量时,会报此错误。例如,初始化 `char` 变量时使用了大于 `255` 的值。解决方法是确保初始化值符合变量类型的要求。 #### 44. Illegal octal ...

    Turbo C 2.00[DISK]

    WELCOME TO TURBO C 2.0 ---------------------- This README file contains important, last minute information about Turbo C 2.0. The HELPME!.DOC file on the COMMAND LINE/UTILITIES disk also answers ...

    Turbo C 2.01[DISK]

    WELCOME TO TURBO C 2.01 ----------------------- This README file contains important, last minute information about Turbo C 2.01. The HELPME!.DOC file on the COMPILER/UTILITIES disk also answers many...

    c-programming-for-scientists-and-engineers-manufacturing-engineering-series

    In today’s technological landscape, C programming remains a cornerstone for many engineering and scientific applications despite the rise of more modern languages like C++. The book "C Programming ...

    GObject Reference Manual

    Value arrays - A container structure to maintain an array of generic values III. Tools Reference glib-mkenums - C language enum description generation utility glib-genmarshal - C code marshaller ...

    C语言常见错误信息

    4. **Array size too large**:数组长度太大,超过了C语言允许的最大数组尺寸。 5. **Bad character in parameters**:参数中包含非法字符,可能是在字符串或标识符中使用了非法字符,比如`#`或`?`。 6. **Bad ...

    C语言出错信息中英文对照表

    43. **Illegal initialization**:非法的初始化,可能是类型不匹配或非法的初始值。 44. **Illegal octal digit**:非法的8进制数字,8进制常量只能由0-7的数字组成。 了解并理解这些错误信息对于C语言编程至关重要...

    C Programming

    In this section, the document begins by explaining the fundamentals of computers, which is essential for understanding programming and the context in which C programming operates. It covers: - **...

    C PROGRAMMING TUTORIAL

    ##### Variable Initialization in C Initializing a variable assigns a value to it. - **Syntax:** `type variable_name = value;` - **Example:** `int age = 25;` ##### Lvalues and Rvalues in C - **...

    C语言错误对照表.doc

    43. **Illegal initialization** - 初始化方式不合法,可能是类型不匹配或非法的初始值。 44. **Illegal octal digit** - 8进制数字非法,只允许0-7的数字。 45. **Illegal pointer subtraction** - 指针相减操作...

    C语言的错误小集 C语言的错误

    例如,在表达式 `a = b + c * d` 中,如果不使用括号明确先进行乘法运算还是加法运算,则可能导致意外的结果。 #### 2. 模糊的符号(Ambiguous symbol) 当一个标识符可能被解释为多种类型时,就出现了模糊的符号...

    c语言错误查询表--学c必备品(收藏版)[文].pdf

    例如,`a+b*c` 应改为 `(a+b)*c`。 2. **Ambiguous symbol 'xxx'**:这意味着可能存在重名或者未声明的变量或函数,确保所有使用的标识符都已正确定义和声明。 3. **Argument list syntax error**:参数列表语法...

    C语言错误大权,有效排错

    ### C语言错误大全:有效排错指南 #### 1. Ambiguous operators need parentheses — 不明确的运算需要用括号括起 - **问题说明**:当编译器无法确定运算符的作用顺序时,需要使用括号来明确优先级。 - **解决方法*...

Global site tag (gtag.js) - Google Analytics