1
vote
2answers
18 views
Tokenize from a textfile reading into an array in C
How do you tokenize when you read from a file in C?
textfile:
PES 2009;Konami;DVD 3;500.25; 6
Assasins Creed;Ubisoft;DVD;598.25; 3
Inferno;EA;DVD 2;650.25; 7
char *tokenPtr;
fileT = …
1
vote
1answer
30 views
Inversion of Control or Dependency Injection — anyone doing it in C?
See, for example, here
http://stackoverflow.com/questions/139299/difference-between-dependency-injection-di-inversion-of-control-ioc
to remind yourself what IoC and DI are.
The question and answer …
3
votes
8answers
139 views
scope of local variables of a function in C
I have heard about the following scenario right when I started programming in C.
"Trying to access from outside, a functions local variable will result in error (or garbage value). Since the stack …
0
votes
1answer
28 views
Reading different data from a textfile delimited with semicolons in C.
How do one read different records of data that are separated with semicolons into an array in C?
from textfile: Text One; 12.25; Text Two; 5; Text Three; 1.253
fopen ...
for(i = 0; i < nrRecords; …
3
votes
6answers
144 views
Fundamentals of Game Programming in C
During the last 2 months I've been trying to learn the basics of game programming. So I coded a few simple games in Java to learn the fundamentals, such as Tetris, Checkers and Pac-Man.
Now I want to …
0
votes
0answers
38 views
Windows folder in c drive [closed]
Hi
can anybody tell
what is the significance of "C:\Windows" windows folder in c drive
What it contains?
are any processes, using the content of this folder
0
votes
3answers
33 views
simple client and server
can sum guide me to a link or a program for simple client and server c or c++ code to run on linux
The requirement is that should be able to send and receive messages.....
1
vote
1answer
27 views
First thread signal is not caught all others caught
Hey all,
Quite a specific question, but I was wondering if anyone has had any problems getting the first signal to be caught in a consumer-producer relationship with multiple consumers (HTTP web …
1
vote
1answer
15 views
Set timeout for winsock recvfrom
I'm trying to set up a blocking socket to timeout after 16 ms of trying to recvfrom() on a port. I've looked at tons of examples online and it seems really simple I just can't seem to get it to work. …
0
votes
2answers
39 views
dynamic allocation/deallocation of 2D & 3D arrays
I know about algorithms to allocate/deallocate a 2D array dynamically, however I'm not too sure about the same for 3D arrays.
Using this knowledge and a bit of symmetry, I came up with the following …
1
vote
3answers
51 views
How is memory allocated for a static multi-dimensional array?
All,
This has been bugging me for a while now. In C\C++( i guess java and .NET as well) we do not have to specify the row index in a multi-dimensional array.
So, for example i can declare an array …
2
votes
5answers
95 views
initialize a C string with multiple quoted strings
Hi,
I thought a C string can be initialized with one and only one quoted string. I just wonder how is this correct?
char const help_message [] =
"Usage: %s [options] files ...\n"
"\n" …
-3
votes
2answers
55 views
0
votes
1answer
65 views
How to implement dependency checking for C/C++ sources
I started adding support for a 3rd party toolchain (IAR Compiler) to Visual Studio 2005.
So far I've managed to implement the required msbuild tasks (Compile, Link and Assemble) and the Visual Studio …
1
vote
11answers
188 views
union versus void pointer
What would be the differences between using simply a void* as opposed to a union? Example:
struct my_struct {
short datatype;
void *data;
}
struct my_struct {
short datatype;
union {
…
