I am trying to read numbers from a text file converted from excel spreadsheet that contains null values. I used "inFile >> myArray[r][c];" but >> seems to ignore NULL. For example if I want to read this (in my txt file there is no char for NULL)
1 NULL 3
4 5 6
it will be stored in the array as
1 3 4
5 6 0
How do I fix it? Any help is appreciated. Thank you so much!