#include<stdio.h>
int main()
{
int i=0,j[5],k=0;
while(i!=5)
{
scanf("\n%d",&j[i]);
i++;
}
while(j[k]!=42)
{
printf("\n%d",j[k]);
k++;
}
return 0;
}
↧
Runtime Error(SIGSEGV) plz help below my code
↧