初学C语言,有个题不会,希望大家能告诉我!
指出下面的变量定义哪些是正确的,哪些是不正确的,为什么?
(1)Int i,j;
(2)float a,b;
(3)int a,bfloat a,b;
(4)float a,int b;
(5)char 'a', 'b';
參考答案:(3)int a,bfloat a,b; ->int a;bfloat a,b;
(4)float a,int b; ->float a;int b;
(5)char 'a', 'b';->char a,b;
应该是int a,b;float a,b;对的。没有问题。