Since 4/15/2012 10:21:51 AM, Michael.Mair has written 3 articles and participated in 1489 conversations. Michael.Mair signature: Michael.Mair
Michael.Mair's articles:
Items(3) /1
Name of the part after the declaration list in a block in C89923 (11/9/2005 9:01:33 PM) comp.lang.c Hello, in C89 (at least in the last public draft), "3.6.2 Compound statement, or block", we have ,--- | Syntax | | compound-statement: | { declaration-list statement-list } | | ... Michael
cygwin: tetex3 tex/generic/config/language.dat defect028 (7/4/2005 11:27:20 PM) comp.text.tex Cheerio, just in case that someone looks for a solution of the same problem: tetex 3.0.0-3 under cygwin died for me (with a complaint about not enough memory, while trie_size = 64000 in texmf.cnf) because nea... Michael
Reading whole text files3223 (2/10/2005 7:56:10 AM) comp.lang.c Cheerio, I would appreciate opinions on the following: Given the task to read a _complete_ text file into a string: What is the "best" way to do it? Handling the buffer is not the problem -- the character in... Michael
How to integrate two c files1733 (2/21/2008 7:07:52 AM) comp.lang.c hello i have a problem... have written two separate c files named read.c and twinkle.c the file read.c, after running stores some values in an array name average[] and it has a count variable k...... now i n... neha_chhatre(20)
Converting unsigned long to string in C12638 (2/24/2008 1:15:51 PM) comp.lang.c Hi, Could any one tell me how to convert a unsigned long value into string (char *) ? In C++ there is a function _ultoa so wanted a similar one in C . Regards, Shivaraj ... bmshivaraj(1)
Variable-sized lines of text in linked list4732 (2/28/2008 7:45:01 PM) comp.lang.c I am trying to read a text file into memory without any knowledge of how long each line will be. I am looking to store each line in a linked list structure, however, I am unsure of how to dynamically allocate ... FonzoCool(2)
main() in C90/C951321 (3/1/2008 11:36:57 AM) comp.lang.c Well we all know K&R2 uses main() and not int main(). Also in K&R2, in chapter 4.1, there is a definition of a function: dummy() {} and it is stated that if the returned type is omitted, int is used. So I ... ivranos(429)
What is a stack frame?18350 (3/3/2008 10:45:35 AM) comp.lang.c Recently K. Thompson asked me to specify what did I understand with "stack frame". I think that it is important for people using the language, that this important concept is clear, so I have produced this post.... jacob4111(1334)
alloca8744 (3/3/2008 8:50:05 PM) comp.lang.c This function is not mentioned very often in this newsgroup but it is a VERY useful function, implemented in most compilers. I think it is useful to point to it since many people that read this newsgroup are n... jacob4111(1334)
#defining an array within another in C language825 (3/8/2008 1:28:08 AM) comp.lang.c Hi All, I am trying to create two arrays at compile time using the #define statement. I am getting a compilation errors due to this; *******************************************************************... maalage(13)