Computer Science, asked by kamilpatelp, 3 months ago

#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 riteshkr142092111
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