No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Hi All, Following code gives me an error when I use text field in CSV file instead of float or integer fields. `matrix_points[cnt][4] = atoi(line);` May be the problem with above line. Please see the below code char matrix_points[6][8]; std::ifstream input_file("C:/NDA/NissanNewApplication/Dev/CommonErrorManager/Src/ErrorMessageList.csv"); int cnt(0); printf("initial valie of cnt = %d\n",cnt); char … | |
Re: Hi, I wanted to read text field and atoi is giving a problem. I cannot use matrix_points[row][col] = atoi(line); which is good for integer/float values If I write matrix_points[row][col] = line; it gives an error Please suggest me what changes could I make | |
Hello Everyone, This is Narender. I am a new member in your community. Hope all cooperation from you all. Thanks & Regards, Narender |
The End.