What is the output of the following C code?
#include <stdio.h>  
int main()  
{  
   int arr[5]={2,0,8,0,2}; 
   for(int i=0;i<5;i++)  
   {  
       printf("%d ",arr[i]);  
   }  
    return 0;  
}  


Posted on by