I\'m absolutely new to C, and right now I am trying master the basics and have a problem reading data from scanf straight into an array.
Right now the code looks lik
Use
scanf("%d", &array[0]);
and use == for comparision instead of =
==
=