Segmentation Fault fgets() two pass assembler [closed] - c
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
#include<string.h>
typedef struct{
char Mnemonic[7];
int code;
} code;
typedef struct{
char label[10];
unsigned int location;
} symbolTab;
int opLook(char * mnemonic, code * optable)
{
int i = 0;
int value = 0;
for(i ; i<25 ; i++)
{
if(strcmp(mnemonic, optable[i].Mnemonic) == 0)
{
value = optable[i].code;
return value;
}
}
return value;
}
int opValid(char * mnemonic, code * optable)
{
int i = 0;
for(i ; i<25 ; i++)
{
if(strcmp(mnemonic, optable[i].Mnemonic) == 0)
{
return 1;
}
}
return 0;
}
int labelcheck(char * label, symbolTab * Table, int counter)
{
int i = 0;
int flag = 0;
if (counter == 0)
{
return flag;
}
else
{
for(i; i <counter; i ++)
{
if(strcmp(label, Table[i].label) == 0)
{
flag = 1;
}
}
return flag;
}
}
unsigned int labelVal(char * label, symbolTab * Table, int counter)
{
int i = 0;
for(i; i <counter; i ++)
{
if(strcmp(label, Table[i].label) == 0)
{
return Table[i].location;
}
}
}
void Assemble(char* filename)
{
unsigned int locctr = 0; /*location counter*/
unsigned int prolen = 0; /*program length*/
int mnemoVal; /*mnemonic Value in Int*/
int labelctr = 0;
code Opta[25] = {{"ADD", 24},{"AND",88},{"COMP",40},{"DIV",36},{"J",60},
{"JEQ",48},{"JGT",52},{"JLT",56},{"JSUB",72},{"LDA",00},
{"LDCH",80},{"LDL", 8},{"LDX", 4},{"MUL",32},{"OR",68},
{"RD",216},{"RSUB",76},{"STA",12},{"STCH",84},{"STL",20},
{"STX",16},{"SUB",28},{"TD",224},{"TIX",44},{"WD",220}};
symbolTab symTab[500];
char buffer[255];
FILE * source;
FILE * interFile;
FILE * objF;
FILE * ListFile;
interFile = fopen("intermidiateFile.txt", "w+");
ListFile = fopen("ListingFile.txt", "w+");
objF = fopen("ObjectFile.txt", "w+");
source = fopen("source.txt", "r");
char * lab; /*label*/
char * mnemo; /*mnemonic*/
char * operand;
char * address = "adress";
unsigned int opeaddress;
fgets(buffer, 255, source);
if (buffer[0] != '.')
{
fprintf(interFile, "%s", buffer);
}
/*Getting first line and initialization of Location Counter*/
if(buffer[0] == '.') /* if the line is a comment continue with the next iteration of the loop*/
{
locctr = 0;
}
else
{
if(buffer[0] == ' ' || buffer[0] == '\t')
{
mnemo = strtok(buffer, " \t");
operand = strtok(NULL, " \t");
if(strcmp(mnemo, "START") == 0)
{
locctr = strtol(operand, NULL, 16);
}
else
{
/*error*/
}
}
else
{
lab =strtok(buffer, " \t");
mnemo = strtok(NULL, " \t");
operand = strtok(NULL, " \t");
if(strcmp(mnemo, "START") == 0)
{
locctr = strtol(operand, NULL, 16);
}
else
{
/*error*/
}
}
}
/* End of the location counter initialization */
/*start while loop*/
while(!feof(source))
{
memset(lab, '\0', strlen(lab));
memset(mnemo, '\0', strlen(mnemo));
memset(operand, '\0', strlen(operand));
fgets(buffer, 255, source);
fprintf(interFile, "%s", buffer);
if(buffer[0] == '.') /* if the line is a comment continue with the next iteration of the loop*/
{
continue;
}
else /* Else for... If it is not a comment, then check if it start with a character or a space*/
{
if(buffer[0] == ' ' || buffer[0] == '\t') /* If it start with a space, then it is just a mnemonic or mnemonic & operand*/
{
mnemo = strtok(buffer, " \t\n\r");
if (strcmp(mnemo, "END") == 0)
{
break;
}
if(strcmp(mnemo, "RSUB") == 0)
{
mnemoVal = opLook(mnemo, Opta);
fprintf(interFile, "%x %02x\n", locctr, mnemoVal);
}
else
{
operand = strtok(NULL, " \t\r\n");
mnemoVal = opLook(mnemo, Opta);
fprintf(interFile, "%x %02x %s\n", locctr, mnemoVal, operand);
}
}
else
{
lab = strtok(buffer, " \t\n\r"); /* it has a label, mnemonic and operand*/
if(labelcheck(lab, symTab, labelctr) == 0) /* check if the label is already in the symTab, if not, add it, otherwise it is an error*/
{
strcpy(symTab[labelctr].label, lab);
symTab[labelctr].location = locctr;
labelctr++;
mnemo = strtok(NULL, " \t\n\r");
if (strcmp(mnemo, "END") == 0)
{
break;
}
operand = strtok(NULL, " \t\n\r");
mnemoVal = opLook(mnemo, Opta);
}
else
{
mnemo = strtok(NULL, " \t\n\r");
if (strcmp(mnemo, "END") == 0)
{
break;
}
operand = strtok(NULL, " \t\n\r");
mnemoVal = opLook(mnemo, Opta);
}
fprintf(interFile, "%x %s %02x %s\n", locctr, lab, mnemoVal, operand);
}
}
if(strcmp(mnemo, "WORD") == 0 )
{
locctr = locctr + 3;
}
else if(strcmp(mnemo, "BYTE") == 0 )
{
unsigned int val;
if (operand[0] =='C')
{
val = strlen(operand) - 3;
locctr = locctr + val;
}
else
{
val = (strlen(operand) - 3)/2;
locctr = locctr + val;
}
}
else if(strcmp(mnemo, "RESB") == 0)
{
locctr = locctr + atoi(operand);
}
else if(strcmp(mnemo, "RESW") == 0)
{
locctr = locctr + (3*atoi(operand));
}
else
{
locctr= locctr + 3;
}
}
/* End of While loop*/
prolen = locctr - symTab[0].location;
fprintf(interFile, "\n%x", prolen);
fclose(source);
fclose(interFile);
interFile = fopen("intermidiateFile.txt", "r");
/*Start the Listing File and Object File ---------------------Pass 2----------- */
fgets(buffer, 255, interFile);
if(buffer[0] == '.') /* if the line is a comment continue with the next iteration of the loop*/
{
locctr = 0;
/*Error missung Start or Misplaced*/
}
else
{
if(buffer[0] == ' ' || buffer[0] == '\t')
{
mnemo = strtok(buffer, " \t");
operand = strtok(NULL, " \t");
if(strcmp(mnemo, "START") == 0)
{
locctr = strtol(operand, NULL, 16);
strcpy(address, operand);
fprintf(ListFile, "%X %s %s\n", locctr, mnemo, operand);
}
else
{
/*error*/
}
}
else
{
lab =strtok(buffer, " \t");
mnemo = strtok(NULL, " \t");
operand = strtok(NULL, " \t");
if(strcmp(mnemo, "START") == 0)
{
locctr = strtol(operand, NULL, 16);
fprintf(ListFile, "%x %s %s %s\n", locctr, lab, mnemo, operand);
fprintf(objF, "H%s__%06x%06x\n", lab, locctr, prolen);
}
else
{
/*error*/
}
}
}
while(!feof(interFile))
{
memset(lab, '\0', strlen(lab));
memset(mnemo, '\0', strlen(mnemo));
memset(operand, '\0', strlen(operand));
memset(address, '\0', strlen(address));
memset(buffer, '\0', strlen(buffer));
fgets(buffer, 255, interFile);
if (buffer[0] == '\r')
{
continue;
}
if(buffer[0] == ' ' || buffer[0] == '\t')
{
mnemo = strtok(buffer, " \t\n\r");
if (strcmp(mnemo, "END") == 0)
{
break;
}
if(strcmp(mnemo, "RSUB") == 0)
{
memset(buffer, '\0', strlen(buffer));
fgets(address, 255, interFile);
mnemoVal = opLook(mnemo, Opta);
fprintf(ListFile, "%s %s %X0000", address, mnemo, mnemoVal);
}
else
{
operand = strtok(NULL, " \t\r\n");
mnemoVal = opLook(mnemo, Opta);
memset(buffer, '\0', strlen(buffer));
fgets(address, 255, interFile);
if (labelcheck(operand, symTab, labelctr) == 1)
{
opeaddress = labelVal(operand, symTab, labelctr);
}
else
{
opeaddress = 0;
/* error*/
}
fprintf(ListFile, "%s %s %s %02X%04X", address, mnemo, operand, mnemoVal, opeaddress);
}
}
else if (buffer[0] == '.')
{
fprintf(ListFile, "%s\n", buffer);
}
else
{
lab = strtok(buffer, " \t\n\r");
mnemo = strtok(NULL, " \t\n\r");
operand = strtok(NULL, " \t\n\r");
mnemoVal = opLook(mnemo, Opta);
memset(buffer, '\0', strlen(buffer));
fgets(address, 255, interFile);
if (labelcheck(operand, symTab, labelctr) == 1)
{
opeaddress = labelVal(operand, symTab, labelctr);
}
else
{
opeaddress = 0;
/* error*/
}
fprintf(ListFile, "%s %s %s %s %02X%04X", address, lab, mnemo, operand, mnemoVal, opeaddress);
}
}
fclose(interFile);
fclose(objF);
fclose(ListFile);
}
The error occurs in the last while loop when executing fgets();
I have looked if I had any variable or syntax wrong, but everything looks fine.
This is a part of a two pass assemble. The error varies between the fgets in the last while loop. At first I thought that it was the memset function, but the error still happened when I mark them as comments
Because of
char * address = "adress";
address is pointing to Read Only Memory
Trying to modify string literals (in your case "adress") invokes undefined behavior.
Then in your last loop
strcpy(address, operand);
memset(address, '\0', strlen(address));
fgets(address, 255, interFile);
Are wrong.
You could change that variable to a simple array of chars with enough room for your needs, e.g.:
char address[128];
Related
Why gdb showed /stdlib/strtol_l.c: No such file or directory? Do I missing something to install?
I tried to compile with -g and then run gdb to find the line that caused the segmentation fault, but the error message confused me. Program received signal SIGSEGV, Segmentation fault. __GI_____strtol_l_internal (nptr=0x0, endptr=endptr#entry=0x0, base=base#entry=10, group=group#entry=0, loc=0x7ffff7fb04a0 <_nl_global_locale>) at ../stdlib/strtol_l.c:292 292 ../stdlib/strtol_l.c: No such file or directory. I tried reinstalling gdb to get it working again, but I failed. It still shows the same error message. I later found the problem myself and marked it in the code below. I'm just curious why something like this sometimes happens when I try to debug some string functions? Like strdup, strtok, strtol, etc.. Am I missing something to install? I hope I can solve this problem completely. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> char buff[255]; #define NUM_BUCKETS 32 typedef struct Customer { char* email; char* name; int shoesize; char* food; struct Customer* next; } Customer ; unsigned long hash(char *str) { unsigned long hash = 0; int c; while (*str != '\0') { c = *str; hash = ((hash << 5) + hash) + (unsigned char)c; str++; } return hash; } Customer *add_friend_to_list(char *email, char *name, int shoesize, char *food, Customer *bucket) { Customer* customer; customer = malloc(sizeof(Customer)); customer->name = strdup(name); customer->food = strdup(food); customer->shoesize = shoesize; customer->email = strdup(email); customer->next = bucket; return customer; } void add_consumer_to_hashtable(char *name, char *food, char *email, int shoesize, Customer **buckets, size_t num_buckets) { size_t which_bucket = hash(name) % num_buckets; buckets[which_bucket] = add_friend_to_list(email, name, shoesize, food, buckets[which_bucket]); } int main() { Customer* buckets[NUM_BUCKETS] = {NULL}; int ittime = 0; FILE *fp = NULL; fp = fopen("customers.tsv", "r"); while (true) { fgets(buff, 255, fp); if (feof(fp)) { break; } ittime++; } fclose(fp); fp = NULL; char *email = (char *)malloc(5 * sizeof(char)); char *name = (char *)malloc(5 * sizeof(char)); int shoesize; char *food = (char *)malloc(5 * sizeof(char)); const char s[2] = "\t"; fp = fopen("customers.tsv", "r"); for (int i = 0; i < ittime + 1; i++) { //This line cause the Segmentation Fault fgets(buff, 255, fp); char *token; token = strtok(buff, s); email = token; token = strtok(NULL, s); name = token; token = strtok(NULL, s); shoesize = atoi(token); token = strtok(NULL, s); food = token; add_consumer_to_hashtable(name, food, email, shoesize, buckets, NUM_BUCKETS); } fclose(fp); while (true) { char *cmd = (char *)malloc(5 * sizeof(char)); printf("command: "); scanf("%s", cmd); if (strcmp(cmd, "add") == 0) { char *email1 = (char *)malloc(5 * sizeof(char)); char *name1 = (char *)malloc(5 * sizeof(char)); int shoesize1; char *food1 = (char *)malloc(5 * sizeof(char)); printf("email address? "); scanf("%s", email1); printf("name? "); scanf(" %[^\n]", name1); printf("shoe size? "); scanf("%d", &shoesize1); printf("favorite food? "); scanf("%s", food1); add_consumer_to_hashtable(name1, food1, email1, shoesize1, buckets, NUM_BUCKETS); free(name1); free(food1); free(email1); } else if (strcmp(cmd, "lookup") == 0) { char *Email = (char *)malloc(5 * sizeof(char)); printf("email address? "); scanf("%s", Email); bool exist = false; for (int i = 0; i < 32; i++) { Customer *cus = buckets[i]; if (buckets[i] == NULL) { continue; } while ((cus != NULL)) { if (cus->shoesize == EOF) { break; } if (strcmp(cus->email, Email) == 0) { printf("email: %s\n", cus->email); printf("name: %s\n", cus->name); printf("shoesize: %d\n", cus->shoesize); printf("food: %s\n", cus->food); exist = true; break; } if (cus->next != NULL) { cus = cus->next; } else { break; } } } if (exist == false) { printf("user not found!\n"); } } else if (strcmp(cmd, "delete") == 0) { char *Email = (char *)malloc(5 * sizeof(char)); printf("email address? "); scanf("%s", Email); bool exist = false; for (int i = 0; i < 32; i++) { Customer *cus = buckets[i]; if (buckets[i] == NULL) { continue; } while ((cus != NULL)) { if (cus->shoesize == EOF) { break; } if (strcmp(cus->email, Email) == 0) { free(cus->email); free(cus->food); free(cus->name); free(cus); cus->shoesize = EOF; cus = NULL; exist = true; break; } if (cus->next != NULL) { cus = cus->next; } else { break; } } } if (exist == false) { printf("user not found!\n"); } } else if (strcmp(cmd, "list") == 0) { for (int i = 0; i < 32; i++) { Customer *cus = buckets[i]; if (buckets[i] == NULL) { continue; } while ((cus != NULL) && ((cus->shoesize) != EOF)) { printf("email: %s\n", cus->email); printf("name: %s\n", cus->name); printf("shoesize: %d\n", cus->shoesize); printf("food: %s\n", cus->food); if (cus->next != NULL) { cus = cus->next; printf("\n"); } else { break; } } } } else if (strcmp(cmd, "quit") == 0) { break; } else if (strcmp(cmd, "save") == 0) { fp = fopen("customers.tsv", "w"); for (int i = 0; i < 32; i++) { Customer *cus = buckets[i]; if (buckets[i] == NULL) { continue; } while ((cus != NULL) && ((cus->shoesize) != EOF)) { fprintf(fp, "%s\t%s\t%d\t%s", cus->email, cus->name, cus->shoesize, cus->food); if (cus->next != NULL) { cus = cus->next; fprintf(fp, "\n"); } else { break; } } } fclose(fp); } else { printf("unknown command\n"); } } for (int i = 0; i < 32; i++) { Customer *tmp; Customer *cus = buckets[i]; if (cus == NULL) { continue; } if (cus->next != NULL) { tmp = cus; cus = cus->next; } else { break; } while ((tmp != NULL)) { if (tmp->shoesize != EOF) { free(tmp->email); free(tmp->food); free(tmp->name); free(tmp); } cus->shoesize = EOF; cus = NULL; } if (tmp != NULL) { free(tmp); } if (cus != NULL) { free(cus); } } return 0; }
I tried to compile with -g and then run gdb to find the line that caused the segmentation fault, but the error message confused me. The error message means: crash happened inside GLIBC strtol_l_internal() function GDB can't show you the source of that function because libc6-src (or similar) package is not installed. Now, looking at the source for strtol_l_internal() is not going to be helpful -- the root cause of the problem is that you called it with incorrect parameter. You should read man strtol and verify that you satisfied its preconditions. It looks like you called strtol(NULL, NULL, ...), which is not a valid thing to do. You could use (gdb) up command to find out where the wrong call came from, and fix the caller.
C Calculator Program with Stack
Hi I am completely stuck on this basic calculator. It runs almost perfectly but something goes wrong in the stack when I try inputting "5 / 5 + 9 * 2". The 1 from 5 / 5 seems to disappear when it is supposed to be addes to the 18 for the last loop. Happens for simular inputs like 2 * 2 - 9 / 2. Just need help finding this weird error that I have spent many hours trying to figure out with no luck! Thank you! #include <stdio.h> #include<string.h> #include<stdlib.h> #include <limits.h> #include <curses.h> #include<ctype.h> struct StackNode { char* data; struct StackNode* next; }; struct StackNode* newNode(char* data) { struct StackNode* stackNode = (struct StackNode*) malloc(sizeof(struct StackNode)); stackNode->data = data; stackNode->next = NULL; return stackNode; } int isEmpty(struct StackNode *root) { return !root; } void push(struct StackNode** root, char* data) { struct StackNode* stackNode = newNode(data); stackNode->next = *root; *root = stackNode; printf("%s pushed to stack\n", data); } char* pop(struct StackNode** root) { if (isEmpty(*root)) return NULL; struct StackNode* temp = *root; *root = (*root)->next; char* popped = temp->data; free(temp); printf("Popped: %s\n", popped); return popped; } char* peek(struct StackNode* root) { if (isEmpty(root)) return NULL; return root->data; } char buffer[64]; char *ca = &buffer[0]; size_t size = 64; int bufferIndex; int first = 0; int isWhiteSpace (char c) { if ((c == ' ') || (c == '\t') || (c == '\r')) { return 1; } else { return 0; } } char* getToken() { char* token = malloc(64); int i = 0; while ((isWhiteSpace(buffer[bufferIndex])) && bufferIndex < strlen(buffer)-1) { bufferIndex++; } while (bufferIndex < strlen(buffer)-1) { int num = isWhiteSpace(buffer[bufferIndex]); if (num == 0) { token[i] = buffer[bufferIndex]; i++; bufferIndex++; //printf("%s\n", token); } else { bufferIndex++; break; } } token[i] = '\0'; first++; return token; } int main() { while (1) { char* token = "test"; char* postFix = "test"; char* hold = malloc(64); postFix = malloc(64); int total = 0; int pres1 = 0; int pres2 = 0; struct StackNode* root = NULL; printf("Enter line: "); getline(&ca,&size,stdin); bufferIndex = 0; if ((strcmp(token, "quit") == 0)) { token = getToken(); if (strcmp(token, "") == 0) { break; } else { printf("Too many arguments. Try again.\n"); } } else { while (strcmp(token, "") != 0) { token = getToken(); //printf("%s\n", token); //printf("Top of stack: %s\n", peek(root)); if (isdigit(*token) == 1) { strcat(postFix, token); strcat(postFix, " "); printf("%s\n", postFix); } else if (peek(root) == NULL) { push(&root, token); } else { printf("Peek: %s\n", peek(root)); if (strcmp(token, "*") == 0) { pres1 = 2; } else if (strcmp(token, "/") == 0) { pres1 = 2; } else if (strcmp(token, "-") == 0) { pres1 = 1; } else if (strcmp(token, "+") == 0) { pres1 = 1; } else { pres1 = 0; } if (strcmp(peek(root), "*") == 0) { pres2 = 2; } else if (strcmp(peek(root), "/") == 0) { pres2 = 2; } else if (strcmp(peek(root), "-") == 0) { pres2 = 1; } else if (strcmp(peek(root), "+") == 0) { pres2 = 1; } while((peek(root) != NULL) && (pres2 > pres1)) { strcat(postFix, peek(root)); strcat(postFix, " "); pop(&root); printf("Postfix: %s\n", postFix); } push(&root, token); } } do { //printf("Peek in DO/WHILE: %s\n", peek(root)); strcat(postFix, peek(root)); strcat(postFix, " "); pop(&root); } while ((peek(root) != NULL)); printf("Postfix: %s\n", postFix); //ca = NULL; token = "1"; bufferIndex = 0; for (int i = 0; i < strlen(postFix) + 1; i++) { buffer[i] = postFix[i]; } //size = strlen(postFix)+1; //printf("TOKEN: %s\n", token); while (strcmp(token, "") != 0) { token = getToken(); if (isdigit(*token) == 1) { //printf("--Token: %s\n", token); push(&root, token); } else { int operand1; //operand1 = malloc(64); int operand2; //total = malloc(64); printf("Peek: %s\n", peek(root)); operand2 = atoi(peek(root)); pop(&root); printf("Operand2: %d\n", operand2); if (strcmp(token, "") != 0) { printf("Peek: %s\n", peek(root)); operand1 = atoi(peek(root)); pop(&root); printf("Operand1: %d\n", operand1); printf("Token: %s\n", token); if (strcmp(token, "+") == 0) { total = operand1 + operand2; } else if (strcmp(token, "/") == 0) { total = operand1 / operand2; } else if (strcmp(token, "-") == 0) { total = operand1 - operand2; } else if (strcmp(token, "*") == 0) { total = operand1 * operand2; } sprintf(hold,"%d",total); //printf("Peek: %s\n", peek(root)); push(&root, hold); //pop(&root); printf("Total: %d\n", total); } else { //printf("Peek: %s\n", peek(root)); break; } } } } printf("Total: %d\n", total); } return 0; } I am supposed to/am using this as a reference for the assignment: http://condor.depaul.edu/ichu/csc415/notes/notes9/Infix.htm
isdigit() should only be tested for zeroness Instead of: if (isdigit(*token) == 1) { use: if (isdigit((unsigned char)*token)) { pointers make it easy to overwrite memory used elsewhere The code does: char* hold = malloc(64); and then later on loops doing: while (/* ... */) { // ... sprintf(hold,"%d",total); push(&root, hold); // ... } This causes all the values stored on the stack to share the same storage and to be overwritten whenever hold is changed. The allocation must happen on every use: char *hold; // ... while (/* ... */) { // ... hold = malloc(64); sprintf(hold,"%d",total); push(&root, hold); // ... }
C program which counts lines and operators wrong
This program should read rows and count operators, but counts wrong and can not find out where the errors are. Help me find out the bugs and fix the program to be able to count rows and operators correctly.I've already tried several ways to fix it and it still counts wrong. Current output:Broqt na operatorite e:1 Broqt na redovete e:1119 Expected output: Broqt na operatorite e:11 Broqt na redovete e:221 #ifndef _CRT_SECURE_NO_WARNINGS #define _CRT_SECURE_NO_WARNINGS #endif #include<stdio.h> #include<stdlib.h> #include<string.h> #include<ctype.h> void cycleOperatorsCounter(FILE* inputStream, FILE* outputStream); void counter(FILE* inputStream, FILE* outputStream); int fileToFile(void); int fileToScreen(void); int screenToFile(void); int screenToScreen(void); void getFileName(char* fileName, int mode); int menu() { int i; printf("----1. FILE TO FILE \n"); printf("----2. FILE TO SCREEN \n"); printf("----3. KBRD TO FILE \n"); printf("----4. KBRD TO SCREEN \n"); printf("----0. EXIT \n"); do { printf("SELECT OPTION: "); fflush(stdin); scanf("%i", &i); } while (i < 0 || i> 4); return i; } int main(void) { while (1) { system("cls"); switch (menu()) { case 1: fileToFile(); break; case 2: fileToScreen(); break; case 3: screenToFile(); break; case 4: screenToScreen(); break; default: return 0; } system("pause"); } } void getFileName(char* fileName, int mode) { while (1) { fflush(stdin); if (mode == 1) { printf("Input file name(.C): "); gets(fileName); if (fileName[strlen(fileName) - 2] == '.' && toupper(fileName[strlen(fileName) - 1]) == 'C') { return; } } else { printf("Output File: "); gets(fileName); return; } } } int fileToFile(void) { char inputFileName[256], outputFileName[256]; FILE *inputStream, *outputStream; getFileName(inputFileName, 1); if (!(inputStream = fopen(inputFileName, "r"))) { fprintf(stderr, "Error opening file!\n"); return -1; } getFileName(outputFileName, 2); if (!(outputStream = fopen(outputFileName, "w"))) { fprintf(stderr, "Error opening file!\a\n"); return -1; } cycleOperatorsCounter(inputStream, outputStream); rewind(inputStream); counter(inputStream, outputStream); fclose(inputStream); fclose(outputStream); printf("Results saved to \"%s\".\n", outputFileName); return 0; } int fileToScreen(void) { char inputFileName[256]; FILE* inputStream; getFileName(inputFileName, 1); if (!(inputStream = fopen(inputFileName, "r"))) { fprintf(stderr, "Error opening file!\n"); return -1; } cycleOperatorsCounter(inputStream, stdout); rewind(inputStream); counter(inputStream, stdout); fclose(inputStream); return 0; } int screenToFile(void) { char outputFileName[256]; FILE *outputStream, *tempStream; char str[999]; tempStream = fopen("temp.tmp", "w"); fflush(stdin); printf("Napishete \"KRAI\" na nov red, kogato vuvedete teksta\n"); while (1) { gets(str); if (!strcmp(str, "KRAI")) { fclose(tempStream); tempStream = fopen("temp.tmp", "r"); break; } fprintf(tempStream, "%s\n", str); } getFileName(outputFileName, 2); if (!(outputStream = fopen(outputFileName, "w"))) { fprintf(stderr, "Error opening file!\a\n"); return -1; } cycleOperatorsCounter(tempStream, outputStream); rewind(tempStream); counter(tempStream, outputStream); fclose(tempStream); fclose(outputStream); printf("Results saved to \"%s\".\n", outputFileName); return 0; } int screenToScreen(void) { FILE *tempStream; char str[999]; tempStream = fopen("temp.tmp", "w"); fflush(stdin); printf("Napishete \"KRAI\" na nov red, kogato vuvedete teksta\n"); while (1) { gets(str); if (!strcmp(str, "KRAI")) { fclose(tempStream); tempStream = fopen("temp.tmp", "r"); break; } fprintf(tempStream, "%s\n", str); } cycleOperatorsCounter(tempStream, stdout); rewind(tempStream); counter(tempStream, stdout); fclose(tempStream); return 0; } void cycleOperatorsCounter(FILE* inputStream, FILE* outputStream) { char str[1000]; int cycleCounter = 0; unsigned i; while (fgets(str, sizeof(str), inputStream) != NULL) { for (i = 0; i < strlen(str); i++) { if ((str[i-1] == ' ' || str[i-1] == '\n' || str[i-1] == '\t' || i==0) && (str[i] == 'i') && (str[i + 1] == 'f') && (str[i+3] == ' ' || str[i+3] == '\n' || str[i+3] == '\t')) { cycleCounter++; } if ((str[i-1] == ' ' || str[i-1] == '\n' || str[i-1] == '\t' || i==0) && (str[i] == 'e') && (str[i + 1] == 'l') && (str[i + 2] == 's') && (str[i + 3] == 'e') && (str[i+5] == ' ' || str[i+6] == '\n' || str[i+7] == '\t')) { cycleCounter++; } } } fprintf(outputStream, "Broqt na operatorite za cikul e: %d\n", cycleCounter); } void counter(FILE* inputStream, FILE* outputStream) { char str[1000]; int Counter = 0; unsigned i; while (fgets(str, sizeof(str), inputStream) != NULL) { for (i = 0; i < strlen(str); i++) { { if ((str[i-1] == ' ' || str[i-1] == '\n' || str[i-1] == '\t' || i==0)) { Counter++; } } } } fprintf(outputStream, "Broqt na redovete e: %d\n", Counter); }
This is prefaced by my top comments. That is, finding the if and the else is more easily done with strtok and strcmp. And, to count rows/lines, simply doing fgets and counting or doing fgetc and counting the \n will work. Hopefully, this will get you farther: void cycleOperatorsCounter(FILE *inputStream, FILE *outputStream) { char *bp; char *tok; char str[1000]; int cycleCounter = 0; while (fgets(str, sizeof(str), inputStream) != NULL) { bp = str; while (1) { tok = strtok(bp," \t\n"); if (tok == NULL) break; bp = NULL; if (strcmp(tok,"if") == 0) { cycleCounter++; continue; } if (strcmp(tok,"else") == 0) { cycleCounter++; continue; } } } fprintf(outputStream, "Broqt na operatorite za cikul e: %d\n", cycleCounter); } void counter(FILE *inputStream, FILE *outputStream) { int Counter = 0; // count number of lines // NOTE: either of these should work: #if 1 char str[1000]; while (fgets(str, sizeof(str), inputStream) != NULL) ++Counter; #else while (1) { int chr = fgetc(inputStream); if (chr == EOF) break; if (chr == '\n') ++Counter; } #endif fprintf(outputStream, "Broqt na redovete e: %d\n", Counter); }
Read a CSV file in C
I have to read a file in the console in C, the file is a CSV file. My code is the following : printf("Ajouter un site internet \n"); printf("------------------------------------------\n"); FILE * curseur = fopen("listess.csv", "a"); SITES * pSites = calloc(100000, sizeof(SITES)); int i = 0; int iSites = 0; int champSites = 0; char temp[1000]; if (curseur != NULL) { char c = fgetc(curseur); while (c != EOF) { printf("%s", (pSites + iSites)->url); if (c != '\n' && c != ';') { temp[i] = c; i++; } else if (c == ';') { temp[i] = '\0'; if (champSites == 0) { strcpy((pSites + iSites)->Commune, temp); champSites++; i = 0; } else if (champSites == 1) { strcpy((pSites + iSites)->Insee, temp); champSites++; i = 0; } else if (champSites == 2) { strcpy((pSites + iSites)->url, temp); champSites++; i = 0; } else if (champSites == 3) { strcpy((pSites + iSites)->Population, temp); champSites++; i = 0; } else if (champSites == 4) { strcpy((pSites + iSites)->https, temp); champSites++; i = 0; } else if (champSites == 5) { strcpy((pSites + iSites)->Serveur, temp); champSites++; i = 0; } else if (champSites == 6) { strcpy((pSites + iSites)->Version, temp); champSites++; i = 0; } else if (champSites == 7) { strcpy((pSites + iSites)->Application, temp); champSites++; i = 0; } else if (champSites == 8) { strcpy((pSites + iSites)->VersionApplication, temp); champSites++; i = 0; } else if (champSites == 9) { strcpy((pSites + iSites)->Langage, temp); champSites++; i = 0; } else if (champSites == 10) { strcpy((pSites + iSites)->VersionLangage, temp); champSites++; i = 0; } else if (champSites == 11) { strcpy((pSites + iSites)->Latitude, temp); champSites++; i = 0; } else if (champSites == 12) { strcpy((pSites + iSites)->Longitude, temp); champSites++; i = 0; } } else { iSites++; } c = fgetc(curseur); } system("pause"); fclose(curseur); } But I do have any result in the console except the two first lines. The file is composed of 13 columns that I declared in a .h file. The 5 first lines of the csv: Commune;Code Insee;url;Population;https;Serveur;Version du serveur;Application;Version de l'application;Langage;Version du langage;Latitude;Longitude Argentat;19010;argentat.fr;3042;non;SiteW;2;Inconnue;Inconnue;php;5.3.29;45.100801186828598;1.934640270901890 Canenx-et-Réaut;40064;mairie-info.com;175;non;SiteW;2;Inconnue;Inconnue;php;5.3.29;43.999060134922502;-0.464769980981436 Chaussan;69051;chaussan.fr;972;non;SiteW;2;Inconnue;Inconnue;Inconnue;Inconnue;45.637283899086498;4.634069843807340 Étrez;1154;etrez.fr;803;non;SiteW;2;Inconnue;Inconnue;Inconnue;Inconnue;46.338283686023097;5.192873875680920 Gray ;70279;ville-gray.fr;6016;non;SiteW;2;Inconnue;Inconnue;php;5.2.10;47.432262030641297;5.610925314619960
Your code is overly complicated. Throw it away and base your new code on this: #include <stdlib.h> #include <stdio.h> #include <string.h> int main() { // declare and initialize your pSites stuff here .... // if (curseur == NULL) { printf("Can't open file\n"); return 1; } int linenumber = 1; char buffer[1000]; while (fgets(buffer, sizeof buffer, curseur)) { char *token = strtok(buffer, ";"); printf("Line %d\n", linenumber++); int column = 0; while (token != NULL) { printf("%2d %s\n", column, token); switch (column) { case 0: strcpy((pSites + iSites)->Commune, token); break; case 1: strcpy((pSites + iSites)->Insee, token); break; case 2: .... etc. } token = strtok(NULL, ";"); column++; } iSites++; } fclose(curseur); } BTW: instead of writing (pSites + iSites)->Commune you should write the more readable variant: pSites[iSites]->Commune
This: if (champSites == 0) { strcpy((pSites + iSites)->Commune, temp); champSites++; i = 0; } else if (champSites == 0) { strcpy((pSites + iSites)->Insee, temp); champSites++; i = 0; } makes no sense, note that both conditions are else if(champSites == 0) which will clearly mean that most of the code is dead (won't ever execute). Should perhaps be if 0 ... else if 1 ... else if 2 and so on.
mpi dynamic array memory allocation
Hello i am trying to apply a filter over a greyscale pgm image: int contor = 0; char *magicNumber; char *metaData; int imageWidth = 0, imageHeight = 0, valueRange = 0; int *imageData; while (EOF != fscanf(fp2, "%[^\n]\n", line)) { if(contor == 0) { magicNumber = (char*)malloc((1 + strlen(line)) * sizeof(char)); strcpy(magicNumber, line); magicNumber[strlen(magicNumber)] = '\0'; } else if (contor == 1) { metaData = (char*)malloc((1 + strlen(line)) * sizeof(char)); strcpy(metaData, line); metaData[strlen(metaData)] = '\0'; } else if (contor == 2) { token = strtok(line, " "); imageWidth = atoi(token); token = strtok(NULL, " "); imageHeight = atoi(token); imageData = (int*)malloc(imageWidth * imageHeight * sizeof(int)); } else if (contor == 3) { valueRange = atoi(line); } else { printf("Should put value %d in imageData at index %d\n", atoi(line), contor); //imageData[contor-4] = atoi(line); } contor++; } My code breaks at the imageData memory allocation. width and height are correctly read and converted to int; Can anyone tell me what i am doing wrong ?