Forum: C Nov 16th, 2009 |
| Replies: 4 Views: 447 solving factorial using recursion is not a good way as long as you can solve it with linear loop. keep it mind. you may get stack overflow.
find the book "The C Programming Language" from Dennis... |
Forum: C Nov 4th, 2009 |
| Replies: 3 Views: 331 thanks for the remark. that was the thing i was trying to remember. |
Forum: C Nov 4th, 2009 |
| Replies: 3 Views: 331 anyways i fixed it myself :) here is the solution
typedef struct
{
int age;
char *name[50];
} Person; |
Forum: C Nov 4th, 2009 |
| Replies: 3 Views: 331 what's wrong here?
typedef struct person
{
int age;
char name[50];
};
int main() |
Forum: C Oct 10th, 2009 |
| Replies: 2 Views: 412 set file extension to .c not .cpp |
Forum: C Sep 23rd, 2009 |
| Replies: 6 Views: 233 write a string parser to drop the empty lines, extra line brakes, extra spaces... etc |
Forum: C Sep 28th, 2007 |
| Replies: 4 Views: 979 I use Eclipse, but when i try to compile a C source with both Cygwin and MinGW gives different errors.
with the same source code under Turbo C, no error, works well. |
Forum: C Sep 27th, 2007 |
| Replies: 4 Views: 979 Hello guys,
I want to improve up my skills programming in C and Phyton on Linux.
I have no idea which version of Linux is good to do this. So far I have tried Fedora 7, Slackware and StartCom... |