#include<stdio.h>
int main()
{
const int i = 0;
printf("%d\n", i++);
return 0;
}
a . 100
b. Infinity
c 0
d Return error
Answers
Answered by
0
Answer:
Return error because here i is constant integer we cant change it value once it initialized we can assign another value in it.
Explanation:
Similar questions