Lvalue required error

后端 未结 3 865
花落未央
花落未央 2020-12-02 00:37

While working with pointers i wrote the following code,

int main()
{
    int a[]={10,20,30,40,50};
    int i;
    for(i=0;i<5;i++)
    {
        printf(\"         


        
3条回答
  •  渐次进展
    2020-12-02 00:52

    http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?topic=%2Fcom.ibm.xlcpp8a.doc%2Flanguage%2Fref%2Flvalue.htm

    also i guess it depends on the compiler?

提交回复
热议问题