Posts by Daniel Ayala • 53 points
3 posts
-
-1
votes1
answer1088
viewsQ: How to read a variable of type unsigned char by the fscanf function?
I am reading an array of a file where each element of this matrix varies from 0 to 255. For this reason I have stored the values within an array of unsigned char type, but am finding some problems…
-
0
votes1
answer111
viewsQ: Error when debugging program: "No Symbol table Loaded"
When debugging the program the following error message appears: Debugger name and version: GNU gdb (GDB) 7.10.1 Starting the debuggee failed: No Symbol table Loaded. Use the "file" command. Debugger…
-
4
votes3
answers315
viewsQ: How to access a pointer within a structure?
I need to know how to access the first position of the pointer vector *c_parte_real, as shown below: typedef struct{ struct char_vector{ char *c_parte_real[2], *c_parte_imag[2]; }c_vector; struct…