Description:
Discussion about C.
|
|
|
Hurry Up, Free Check Of $327 With Your Name.
|
| |
Hurry Up, Free Check Of $327 With Your Name. Quickly open below website and click any one of the Red Color Text in the website and enter your payeename and address where to get your check. The secret website link is [link]
|
|
printf the values of a macro
|
| |
I'm having a problem figuring out how to printf the value of BD_ADDR from this macro. What I'm tring to do is get it to display a Bluetooth Address in the format "BD_ADDR = xx:xx:xx:xx:xx:xx" Several people have told me that it's written wrong and breaks the rules of C, but I did not write it, it's part of a bluetooth lib... more »
|
|
dependencies
|
| |
hi, can anyone point me in the right direction to take reduce the dependencies of this algorithm: for (i=0; i < m; i++) { n1 = n2; n2 = n2 + n2; e = -6.283185307179586/n2; a = 0.0; for (j=0; j < n1; j++) { c = cos(a); s = sin(a); a = a + e; for (k=j; k < n; k=k+n2) {... more »
|
|
My GetDirectoryTreeSize() function, couple of questions.
|
| |
First of all if the code below is a mess on your screen, or if you'd prefer to read it on a web page, then it's up on pastie - here: [link] I'm back doing some C coding on Linux, having not coded in C for 15 years... My project needs the total file size of all the files in a directory tree, so I... more »
|
|
a question about 1-dimension and 2-dimension array
|
| |
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, operations?
|
|
Call for Paper The International Journal of Computer Science (IJCS)
|
| |
Call for Paper The International Journal of Computer Science (IJCS) publishes original papers on all subjects relevant to computer science, communication network, and information systems. The highest priority will be given to those contributions concerned with a discussion of the background of a practical problem, the establishment of an... more »
|
|
SMTP Client
|
| |
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:58:41 -0800 HELO world 250 ns1.zanmo.com Hello 60.sub-75-229-11.myvzw.com [75.229.11.60] MAIL FROM: t...@test.com... more »
|
|
compiling C program containing Xutil functions
|
| |
I failed to compile that program as written below with those error messages : The conditions of compiling this program are not available any longer in the net so please help me compiling this program . Error messages : ------------------------ root @ Homer /export/home/unix.d/programs.d /clang.d/GUI>cc plot_data.c... more »
|
|
Missing braces around {0} initializer?!
|
| |
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] = { 0 }; /* Why warning?! */ struct tlv_item tlv_2[10] = { {0,0,0} }; /* OK */... more »
|
|
|