Can u guess the output of this progran?
#include<studio.h>
int main()
{
int a[ ]={10,20,30,40,50};
int j;
for(j=0;j<5;j++)
   {
       printf("%d\n" ,*a);
       a++;
     }
return 0;
}

Posted on by