0
1.3kviews
Study the following C program
written 5.7 years ago by | • modified 3.0 years ago |
Program
void main () {
int a= 0;
for ( ; a ;); a++;
}
What will be the value of the variable a, on the execution of the above program.
A] 1
B] 0
C] -1
D] none of these
ADD COMMENT
EDIT
1 Answer