4
votes
4answers
150 views
correctly declaring the main() function in ANSI C
The C standard say:
The function called at program startup
is named main. The implementation
declares no prototype for this
function. It shall be defined with a
return …
1
vote
6answers
122 views
Writing application for both Unix and Windows
I'll write a program for Interactive UNIX (http://en.wikipedia.org/wiki/INTERACTIVE%5FUNIX). But in a year it will be ported to Windows. I'll write it in ANSI C and/or SH-script. W …
1
vote
8answers
184 views
How to make window application in ANSI C?
Hello,
Until now I've been only writing console applications but I need to write a simple window application for a school assignment.
Could somebody point me to a good tutorial h …
14
votes
7answers
672 views
Is “The C Programming Language” (book) current?
Is the version of C taught by this rather old, but frequently mentioned, book the same as that which is being used in the real world today? If not, could anyone list or point to …
0
votes
1answer
89 views
How to declare a C Array as a property of an Objective-C object?
I'm having trouble declaring a C Array as an Objective-C Property (You know @property, and @synthesize so I can use dot syntax)...Its just a 3 dimensional int array..
1
vote
2answers
178 views
How to get that Zelda Text Effect?
I have a little 2D tile-based OpenGL ES game on the iPhone in which a dialogue box will appear on the screen when talking to characters in the game. I want to know how to display t …
1
vote
3answers
121 views
free memory not clears the memory block
Hi,
I am using DllImport to call method in c wrapper library from my own .net class. This method in c dll creates a string variable and returns the pointer of the string.
Somethi …
0
votes
1answer
17 views
relloc behavior on resize
How does relloc behaves when it has to resize the allocated memory to a bigger size and it has to be done in a separate memory area as the requested amount of memory can be resiz …
0
votes
3answers
105 views
How do I represent a Unicode character in a literal string ISO/ANSI C when the character set is ASCII?
In Perl, I can say
my $s = "r\x{e9}sum\x{e9}";
to assign "résumé" to $s. I want to do something similar in C. Specifically, I want to say
sometype_that_can_hold_utf8 c = get_ …
2
votes
6answers
120 views
Reading ints from file with C
Hello. This is a very simple question, but I can't seem to find something about it in here already. I want to read two integers from a file with C. My code now is this:
int main() …
0
votes
6answers
288 views
The bounds on void-pointers in ANSI C89/ISO C90
Is there a way to portably determine the upper and lower bound on void-pointer values in ANSI C89/ISO C90? (I currently do not have a copy of the standard with me (I have one at ho …
7
votes
6answers
5k views
How to measure time in milliseconds using ANSI C?
Using only ANSI C, is there any way to measure time with milliseconds precision or more? I was browsing time.h but I only found second precision functions.
3
votes
2answers
80 views
Are compund statements (blocks) surrounded by parens expressions in ANSI C?
Browsing the Linux kernel sources I found some piece of code where a block of statements surrounded by parenthesis is treated as a expression a la lisp (or ML), that is, an express …
1
vote
7answers
2k views
Parsing Integer to String C
How does one parse an integer to string(char* || char[]) in C? Is there an equivalent String parseInt(int) method from Java in C?
4
votes
5answers
249 views
Memory location of enum value in c
I think I've read somewhere that it is illegal to take the address of an enum value in c (enum values not being lvalues; however, I can't find any information on this now). Is that …
