-4
votes
2answers
42 views

I am trying to make a loop that will make the user keep entering numbers until the user would enter a symbol to end the loop [closed]

I am trying to make a loop that will make the user keep entering numbers and storing those numbers in an array or another way to store the numbers and then the user would enter a symbol to end the ...
2
votes
2answers
85 views

For what do we need storage allocation?

for what do we actually require manual storage allocation? The only possible tasks which I could think about would be for bigger binary data which does not fit to a 32bit integer. Is this correct? ...
1
vote
1answer
108 views

iMX6Q NAND Boot issue in WinCE

I'm trying to boot eboot.nb0 from NAND. (Micron, MT29F4G08ABBDA) in WinCE7. Processor: i.MX6Q I have successfully booted u-boot.bin from NAND using kobs-ng tool in linux. Also, if i use modified ...
1
vote
3answers
145 views

error: storage size of ‘Img’ isn't known [closed]

I'm trying to write a simple code to read in a .PGM file. The code I wrote is #include "./netpbm/lib/pgm.h" #include <stdio.h> typedef unsigned int gray; int main(int argc, char* argv[]){ ...
1
vote
2answers
208 views

Will writing million times to a file, spoil my harddisk?

I have a IO intensive simulation program, that logs the simulation trace / data to a file at every iterations. As the simulation runs for more than millions of iterations or so and logs the data to a ...
0
votes
1answer
111 views

FAT32 filesystem image fails with disk check? [closed]

As I'm building a portable device with file system format FAT32 on the NAND flash memory for windows based platform, I get a problem about checking the filesystem type via MS-dos command chkdsk. It ...
1
vote
2answers
104 views

C UDP sockets, where do packets are stored before to be retrieved by recvfrom?

I am creating a little application in C using UDP sockets and I am using the following recvfrom function: int recvfrom(int s, void *buf, int len, unsigned int flags struct sockaddr *from, socklen_t ...
0
votes
1answer
166 views

POSIX guaranteeing write to disk

As I understand it, if I want to synchronise data to the storage device I can use fsync() to supposedly flush all the OS output caches... but apparently it doesn't guarantee this at all, unlike the ...
0
votes
1answer
207 views

Storing a large amount of data using C/C++ [closed]

In my project I have to process a large number of files, extract information from them and later process them. For this, I'm using structures to store information. But, since all the information is ...
1
vote
4answers
244 views

C-Preprocessor and Implementing a string table in low memory

I have some pre-processor definitions that make storing UI text easy in a single array (see below). Also makes supporting other languages less cumbersome. #define DECLARE_STRING_ENUM_FST(name, ...
0
votes
2answers
80 views

How should I go about storing resources in C

What system should I use to store resources (Images, SoundEffects etc) in C? One example would be storing them in a struct type system: struct _Resource { struct _Image { SDL_Surface ...
0
votes
1answer
118 views

Any good tutorial to understand auto, extern, static and register variables in C? [closed]

Can any one refer me good tutorial with lots of examples on auto, extern, static and register variables in C? I always get confused with it.
2
votes
2answers
85 views

How do I store structures that are read from a file in C?

I came up with a project to work on learning C and I have kind of hit a wall. The project is simply a card game where the player has two sets of cards, one set is a deck of a set size and the other is ...
1
vote
2answers
167 views

How are my bytes in C stored?

First, I'm a student still. So I am not very experienced. I'm working with a piece of bluetooth hardware and I am using its protocol to send it commands. The protocol requires packets to be sent ...
-4
votes
4answers
457 views

in C, how do I store a String type AND an int type in the same variable?

I want to store an integer and a String in a variable called X and then display it. int X; printf("enter a number or a name") scanf("%d", &X); printf("%d", X); Obviously I would need to ...
0
votes
3answers
91 views

Confusion in Memory Addressing with Arrays

Lets have an array of type int:- int arr[5]; Now, if arr[0] is at address 100 then Why do we have; arr[1] at address 102 , arr[2] at address 104 and so on. ...
4
votes
4answers
324 views

In C storing values that start with zero get mutated, why?

For example: int main(){ int x = 01234567; printf("\n%d\n",x); return 0; } The following code produces: 342391 If I didn't include the 0 at the beginning, the value x would be ...
0
votes
5answers
137 views

storing data type in c

I can't find anything on the net that tells how to put a data type into a pre-allocated block of memory. I hate doing memory management myself, but in this case I must. I have a block of memory that ...
1
vote
2answers
136 views

efficient disk storage of decimal numbers in C (C89)

I am writing functions that serialize/deserialize a large data structure for efficient reloading later on. There is a particular set of decimal numbers for which precision is not a huge deal, and I ...
2
votes
1answer
2k views

non-static declaration following static declaration

Consider these examples: static int a; extern int a; //OK -- what linkage does the a have now? static int a; int a; //ERROR extern int a; static int a; //ERROR int a; static int a; //ERROR extern ...
1
vote
3answers
349 views

Save and load data using ANSI C on any platform

Say I have 1 million structs, each containing integers, doubles, strings, and other structs, something like: struct s1 { int f1; long f2; char* f3; }; struct s2 { struct s1* f1; ...
1
vote
3answers
84 views

String not storing in a structure properly

typedef struct class { char* CLASS_ID; char* CLASS_NAME; } What would cause those two strings to lose their values over the course of 30-40 unrelated lines of code? (Assigned to a pointer ...
0
votes
2answers
115 views

C: database for storing command history

I want to create a run dialog, i implemented interface and command run, but i'm stalled on following: i need some storage of strings which will be able to provide me slices beginning with specified ...
0
votes
5answers
247 views

C string literal storage between multiple copies of process or library

What is the behavior of various systems when you have more than one copy of a particular program or library running, do string literals get stored once in RAM or once for every copy of the ...
1
vote
2answers
61 views

Program communicating with itself between executions

I want to write a C program that will sample something every second (an extension to screen). I can't do it in a loop since screen waits for the program to terminate every time, and I have to access ...
2
votes
2answers
1k views

listen for harware change events from the linux kernel or udev

I need to run some code on storage device mounting and unmounting. How can i listen for these events on linux? I was thinking on adding some udev rules to run some script (any know-how in this ...
1
vote
2answers
682 views

Reading CGI POST data the most efficient way

I'm in great need of a way to dig through potentially huge amounts of CGI supplied POST data. With reading the GET data it's no big deal, as I can just re-request the QUERY_STRING environment ...
6
votes
10answers
2k views

C Question: How to store data inside the executable file

complete newbie here, I need to find a way to store 250 KB of plain text numbers inside my program's executable file. Usually, I would put the data in a separate file and let the program read it ...
0
votes
4answers
108 views

Can I use C to know whether a file operation is performed on the disk at runtime?

Can I use C to know whether a file operation is performed (and where it is performed) on the disk at run time?
1
vote
4answers
1k views

Reading a file line by line in C

I am trying to write some code that will open a file, read its content line by line and store each of these lines into an array. First I open the file and count the number of lines, each of the lines ...