Why on lord’s green earth does my code not work? Was expecting an output of 5 prompts but instead the program gets stuck after the first or second scanf. #include<stdio.h> int main() { int n[5], i, plus = 0, minus = 0; printf(“Enter 5 positive/negative numbers: “); for (i = 1; i <= 5; i++)Read more