a good C book1524 (1/31/2013 9:05:15 PM) comp.lang.c Hello friends,
I *really* dont want to flame a war here. But it will be helpful for me if you can suggest a good book for me.
I am not a novice programmer, using fortan for ~10 years now. But from such higher... bnrj.rudra(343)
Array passed as function parameters2430 (8/16/2012 1:25:57 PM) comp.lang.c Could anyone please explain the differences between
the following array passing? Thanks!
1) int get_data(char d[100]) {...}
2) int get_data(char *d) {...}
/WT
... ytlim1(236)
Vanilla XML parser1240 (8/23/2012 8:45:16 PM) comp.lang.c As part of the binary image processing library work I had to load some XML
files. There doesn't seem to be a lightweight XML parser available on the web.
Plenty of bloated ones that require full-fledged insta... malcolm.mclean5(725)
C as a Subset of C++ (or C++ as a superset of C)264102 (8/26/2012 9:57:30 AM) comp.lang.c++ Isn't it a lame use of human time and effort to maintain completely separate
C and C++ standards? As in the words of Betty White about Facebook: "It
seems like an incredible waste of time". Why don't the tw... tinker454(114)
#define BYTES *83627 (8/28/2012 7:44:24 AM) comp.lang.c Anything wrong with that, i.e., with #define BYTES *8
to multiply by 8? It looked a little weird to me, but
the more obvious #define BYTES(x) ((x)*8) isn't what
I wanted to write. This was to express units ... john42(309)
typedef, 2D arrays, design: question1121 (9/1/2012 4:25:30 AM) comp.lang.c I am reading "A Book on C" forth edition.
In chapter 6, the author discusses "The Use of typedef". The following is t=
he examples given in the book:
#define N 3
typedef double scalar;
typedef scal... gdotone(12)
New C operator -- would it be a good idea?3637 (9/10/2012 7:48:06 PM) comp.lang.c Hi.
I was wondering about this. I saw this posting on this site:
http://stackoverflow.com/questions/1642028/what-is-the-name-of-this-operator
where they were mentioning a fake "operator", an artifact o... mike4ty4(405)
if(a>b>c)415 (2/16/2013 8:14:10 AM) comp.lang.c Problem is :
let int a=5,b=16,c=7;
if(a<b<c)
{
printf("C is greater %d", c);
}
in above case still this statement executed. Any one explain the reason !
... asad.w.malik(2)
c pointers notation basic question4216 (3/16/2013 2:24:12 PM) comp.lang.c Hi
Can someone help me out remember basic pointer notation?
p points to a type int data
int *pi;
char *pc;
pc points to a type char data
Is there any difference with this notation?
char* pc;
... bpascal1232945(16)