Since 4/25/2012 5:11:57 PM, emdel has written 3 articles and participated in 949 conversations. emdel signature: emdel
emdel's articles:
Items(3) /1
about difftime()628 (1/7/2006 7:37:53 PM) comp.lang.c Hi, Is there a portable way to convert the value returned by difftime (a number of seconds of type double) in time_t, which, AFAIK, is not a number of seconds. For this reason, I guess, that this code of mi... Emmanuel
Quizz de Noel042 (12/25/2005 12:23:26 PM) comp.lang.c salut, Voici 2 reels qui me trottent dans la t�te depuis 10 ans. Probablement d'apr�s une cassette de session avec Josephine Marsh enregistr�e en 1994 � Miltown Malbay... Si quelqu'un a les titre, il aura m... Emmanuel
Gerry O'Connor a Nantes233 (11/20/2005 10:11:40 PM) comp.lang.c Bonjour, Je re�ois cette information en provenance directe de Nantes : Le Nouveau Pavillon pr�sente le violoniste Gerry O'Connor en duo avec le guitariste chanteur Tony Byrne en concert le Jeudi 15 D�cembre ... Emmanuel
How do i set zero as a Integer?3225 (2/10/2006 6:04:39 PM) comp.lang.c I mean, anything that follows a 0 is automatically turned into a octal number. I want to have a integer variable that will hold numbers as integers even if they begin with a zero. for example: int 08453 s... topsoil(35)
Basic Bit Operation Question.2525 (2/12/2006 1:53:51 PM) comp.lang.c Hi every one, I got very basic question, here i go: Say i have 11001 11010 bits which are infact 10 bits. Now i want to address every bit so if it is zero i would add one and if it is one then i would be addi... jhonstranger(15)
problem with pointer to array1532 (2/17/2006 9:02:48 AM) comp.lang.c Hi , i don't know why the below mentioned program is giving wrong o/p. #include #include #include ARRAY_SIZE 10 int func(void *x) { int (*y)[ARRAY_SIZE]; y=x; printf("%d, %d",y[0],y[1]); retu... ankitjain.bvcoe(13)
jump over lines in C924 (2/20/2006 6:49:16 PM) comp.lang.c I opened a file with fileptr=fopen(filaneme,"r"); I then use fgets(a_string, sizeof(a_string),fileptr); to read each line. How to jump over a prespecified number of lines without doing fgets? Thanks for an... universal_used(58)
String to Octal2726 (2/21/2006 4:32:38 AM) comp.lang.c I want to read in an Octal number argument and have it stored as an octal number. For instance the user will type: ./a.out 777 and it will store the octal number 777. But it atoi does this as an interger, an... fuch6921(2)
to calculate bitsize of a byte9630 (2/21/2006 7:01:05 AM) comp.lang.c I am reading "Joel on Software" these days, and am in stuck with the question of "how to calculate bitsize of a byte" which is listed as one of the basic interview questions in Joel's book. Anyone could give so... david.ullua(18)
Character Constants2326 (2/21/2006 7:02:27 AM) comp.lang.c Since a character constant is an int value represented as a character in single quotes,so it is treated as a 1 byte integer now look at the following snippet. #include int main(void) { char a='Abbc'; p... akhilbhardwaj23(7)
printf() error with long double and null pointer.6931 (2/24/2006 12:09:20 PM) comp.lang.c Hello all, Before stating my question, I should mention that I'm fairly new to C. Now, I attempted a small demo that prints out the values of C's numeric types, both uninitialised and after assigning them th... fieldfallow(12)
Frustration - Input Output Question427 (2/24/2006 4:23:35 PM) comp.lang.c Hi, I have a C/C++ program.. I'm using a certain file to dump lots of computed numbers in it because I might need to check them later on...so the only way I was able to do that is by "appending" all the data ... zfreddyzzz(8)