Since 5/7/2012 8:30:07 AM, Pilcrow6 has written 4 articles and participated in 48 conversations. Pilcrow6 signature: Pilcrow6
Pilcrow6's articles:
Items(4) /1
extracting substrings based on 'fuzzy' match328 (11/21/2008 11:38:43 AM) comp.lang.c This problem was raised in comp.lang.perl.misc, and the poster was concerned, among other things, by the speed of execution. Since C is faster than perl, I wonder how a C coder would solve it? Given a *very* l... Pilcrow
the 'standard' is so strange2221 (11/17/2008 11:55:17 AM) comp.lang.c This behavior seems very strange to me, but I imagine that someone will be able to 'explain' it in terms of the famous C standard. -------------------- code ----------------------------------- #include int m... Pilcrow
No free?221 (10/30/2008 2:05:40 AM) comp.lang.c Is memory allocated with malloc, etc. released at program termination, even if no free() was executed? -- I cum frum Brooklyn and, if y'want me tuh, I'll loin yuh tuh tawk right. Hell, I'll loin all of yez... Pilcrow
Question about pointers4926 (9/10/2008 9:39:55 PM) comp.lang.c In the code below, can someone explain why the asterisks seem to be required on the line labelled 'A' and forbidden on the line labelled 'B'? Thanks in advance for the help. -----------------------------------... Pilcrow
99 ^ 99 in C4317 (9/27/2008 12:55:41 PM) comp.lang.c I know it is really tough to calculate 99^99 in C. Its not only difficult but also time consuming to get the o/p. But how perl interpreter calculates it( $x = 99 ** 99; print 4x;) within seconds???/ which alg... lipun4u(226)
[not quite ot] what language is this??2227 (10/13/2008 7:22:07 PM) comp.lang.c 2000 LDM 0, 1004 // R0 = a // 2004 LDM 2, 1008 // R2 = b // 2008 MUL 0, 2 // R0 = a * b // 2010 LDM 1, 1012 // R1 = c // 2014 LDM 2, 1016 // R2 = d // 2018 MUL 1, 2 // R1 = c * d // 2020 SUB 0, 1 // R0 = a * b ... felipevaldez(51)
Infrequently asked questions4551 (10/15/2008 10:46:20 PM) comp.lang.c In his web pages, D. E. Knuth wrote this: (http://www-cs-faculty.stanford.edu/~knuth/iaq.html) Infrequently Asked Questions 1. Why does my country have the right to be occupying Iraq? 2. Why should my... jacob4111(1334)
right padding3524 (10/21/2008 9:03:50 AM) comp.lang.c Hello, Is it possible to right pad with "0" (or other character != blank) ? for example : 1 , length 10 => "1000000000" I've tried with sprintf but I can only left pad with "0" or right pad with blanks => "000... marc.tessis(13)
No free?221 (10/30/2008 2:05:40 AM) comp.lang.c Is memory allocated with malloc, etc. released at program termination, even if no free() was executed? -- I cum frum Brooklyn and, if y'want me tuh, I'll loin yuh tuh tawk right. Hell, I'll loin all of yez... Pilcrow6(52)
Why is it wrong??(About n!)918 (10/30/2008 2:15:01 AM) comp.lang.c I want to calculate n!,and my C code is as follows: #include #include int main() { int nonnega_int, counter; unsigned long result = 1; printf("Enter a nonnegative integer (as n)\n"); printf("and I'll c... upyzl
scanf and conversion problem319 (10/30/2008 4:01:17 AM) comp.lang.c Hi, this is a part of my program code. i want to ask two questions. int time; float rate; float salary; printf("Enter # of hours worked (-1 to end):"); scanf("%d",&time... yxx_happy(2)
Pascal - C (2)6034 (11/1/2008 9:43:55 PM) comp.lang.c Hallo allemaal, During the conversion of my program from Pascal to C, I was more or less able to find the C equivalent of most Pascal functions so far. Only four gave me some real trouble. I solved them but i... Ruud.Baltissen592(59)
replace string1727 (11/4/2008 4:53:03 PM) comp.lang.c hi, I have a url which is a char * char * url = "/url=%2Fhome%2Fsumit%2Fpackages%2Fmyxml.xml"; when i send this URL to http server it was like - "/url=/home/sumit/pacakges/myxml.xml" but when it get by http... sumit15nov(23)
the 'standard' is so strange2221 (11/17/2008 11:55:17 AM) comp.lang.c This behavior seems very strange to me, but I imagine that someone will be able to 'explain' it in terms of the famous C standard. -------------------- code ----------------------------------- #include int m... Pilcrow6(52)