Since 4/25/2012 11:47:42 PM, bwzcab has written 1 articles and participated in 60 conversations. bwzcab signature: bwzcab
bwzcab's articles:
Items(1) /1
Missing braces around {0} initializer?!4246 (2/8/2010 6:13:41 PM) comp.lang.c I am puzzled by a warning, I get when using {0} as initializer. This snippet demonstrate the warning: struct tlv_item { int tag; int len; char *val; }; int main(void) { struct tlv_item tlv_1[10]... Tor
C99 is not a failure (continued)2043 (2/10/2010 9:50:36 PM) comp.lang.c The most important argument of the people in this group trying to deny the importance of C99 is that "There are not enough C99 implementations" DID YOU KNOW? There is ONE (yes ONE) full implementation of C++... jacob24(973)
a question about 1-dimension and 2-dimension array1735 (2/9/2010 12:42:55 PM) comp.lang.c I have 10000 numbers. Now i need to choose a kind of data structure to save them. of 1-dimension and 2-dimension array, which is faster? does it depend on factors such as degree of order, correlation, operati... zhus(4)
SMTP Client1336 (2/9/2010 2:07:26 AM) comp.lang.c I am starting a new project to create a SMTP Client for Windows; I am using the winsock2 library. When I use the following commands I get an error (550): 220 ns1.zanmo.com ESMTP Exim 4.69 Mon, 08 Feb 2010 17:5... seaworthyjeremy(10)
Missing braces around {0} initializer?!4246 (2/8/2010 6:13:41 PM) comp.lang.c I am puzzled by a warning, I get when using {0} as initializer. This snippet demonstrate the warning: struct tlv_item { int tag; int len; char *val; }; int main(void) { struct tlv_item tlv_1[10]... bwzcab(61)
Socket Programming (connect() returns errorno = 38)636 (2/8/2010 1:06:34 AM) comp.lang.c Hi, I am using connect() to connect a socket. connect() returns -1 and sets errno to 38. How can I find the error type associated with this value (i.e., 38) in errno? Thanks for any help, Michael ... michael.mcgarry(91)
The C FAQ11956 (2/6/2010 9:10:14 PM) comp.lang.c This document shows its age. I remember complaining here some years ago about this MSDOS questions but they are still there: 19.17c How can I suppress the dreaded MS-DOS ``Abort, Retry, Ignore?'' message? 19... jacob(2538)
A new contract for comp.lang.c1246 (2/6/2010 4:02:45 PM) comp.lang.c WHEREAS this newsgroup is almost useless for its intended purpose, AND NOTING that it is constantly subject to the scourge of bullying, WE PROPOSE THAT all posters follow these rules 1. Don't call other pe... spinoza1111(3250)
So I want to exhaust a lot of memory14166 (2/4/2010 10:50:29 PM) comp.lang.c What is the best way to exhaust a lot of memory but at the same time
leave enough so that I can test out of memory errors for some
container functions, i.e. like not having enough memory to allocate a
new li... ImpalerCore
main.c1529 (6/18/2009 12:45:30 AM) comp.lang.c I have written this in main and it compiles and gives a segmentation fault. With all the previous code what could be wrong here? #include "node.h" int main() { struct node *a; int i=maxDepth(a); print... nospam116(1187)
segmentation fault in strcmp()2544 (6/16/2009 4:30:46 AM) comp.lang.c hello all, I am writing a program to parse HTML code, it reads words (separated by white spaces) one at a time and implements a state machine depending upon the occurrence of various tags. Now after reading a... mohangupta13(109)