Search Results

8
votes
11answers
971 views

Pointer question in C

I am modifying some code and came across a declaration that I am having trouble understanding: int *userMask[3][4] = {0}; What exactly is this pointing to? Is it …
5
votes
17answers
1k views

Can I allocate a specific number of bits in C?

Hello, I am trying to store a large amount of boolean information that is determined at run-time. I was wondering what the best method might be. I have currently been trying to all …
3
votes
8answers
290 views

Unexpected output copying file in C

In another question, the accepted answer shows a method for reading the contents of a file into …
2
votes
7answers
599 views

Make a copy of a char*

I have a function that accepts a char* as one of its parameters. I need to manipulate it, but leave the original char* intact. Essentially, I want to create a working copy of this char*. It seem …
2
votes
7answers
997 views

Error parsing string in C “ left operand must be l-value”

I am faced with the need to pull out the information in a string of the format "blah.bleh.bloh" in ANSI C. Normally I would use strok() to accomplish this, but since I am getting this string via s …
1
vote
6answers
1k views

fread example from C++ Reference

I often use the website www.cplusplus.com as a reference when writing C code. I was reading the example cited on the page for …
7
votes
17answers
822 views

Is if(TRUE) a good idea in C?

In the C programming language, it is my understanding that variables can only be defined at the beginning of a code block, and the variable will have the scope of the block it was declared in. Wit …
1
vote
4answers
128 views

Alternate method for typecasting in C?

I came across this line in some code and can't find the syntax defined anywhere: *(float *)csCoord.nX = lImportHeight* .04f; /* magic number to scale font size */ …
0
votes

Pointer question in C

If that is the case, I am still slightly confused. The userMask array is being used later as: if(userMask[2][maskElement][user] && blah) result = true; …
1
vote

Pointer question in C

I guess my question is how userMask[2][maskElement][user] can work when it is declared as int. Wouldn't userMask have to be int[] for that to work properly? …
0
votes

Can I allocate a specific number of bits in C?

See the comments under the initial question. Thanks for your help S. Lott. …
1
vote

Regular expressions with matching brackets

The formal language that defines brace matching is not a regular language. Therefore, you cannot use a regular expression …