Forum: C Jun 24th, 2008 |
| Replies: 8 Views: 509 Re: please help on string sorting You've got some memory allocation issues in your code. On top of that, you're passing a pointer of a pointer to fgets(), while fgets() expects a pointer to a null-terminated string. |
Forum: Website Reviews Jun 24th, 2008 |
| Replies: 8 Views: 617 Re: Could someone please review my site? That wasn't a flame, nor was it intended to be. Since you fail to comprehend what I was trying to communicate, let me try to put it a little bit clearer:
http://catb.org/~esr/html-hell.html
Try... |
Forum: Website Reviews Jun 22nd, 2008 |
| Replies: 8 Views: 617 Re: Could someone please review my site? Wait, you call yourself a web design company? That has got to be one of the crappiest web designs I have ever seen in my life. Colors and text placed haphazardly all over the place, no clue how to... |
Forum: C++ May 23rd, 2008 |
| Replies: 7 Views: 502 Re: Linked List and Dynamic Array Problem Sort them as you add them. It'll be much simpler (and much more efficient) if you do it this way. Accomplishing it involves using the strings' overloaded '<' and '>' operators to figure out the... |
Forum: Website Reviews Mar 10th, 2008 |
| Replies: 7 Views: 563 Re: RProductions Try testing on lots of different browsers and screen resolutions. You've really got some issues with your design at the moment. For example,
5355
makes me think you don't have much experience coding... |
Forum: Website Reviews Mar 10th, 2008 |
| Replies: 4 Views: 425 Re: review my site I'd say cut back on some of the ads, simplify the design and people will be able to find their way around the site much better. Right now the design vaguely reminds me of a freight train crashing... |
Forum: Website Reviews Mar 10th, 2008 |
| Replies: 3 Views: 442 Re: Hos my webdesign looks ?? The layout looks decent, although there's still some rough edges that need to be worked out. The moving flags on the far left are only slightly less annoying than moving Flash advertisements that I... |
Forum: Website Reviews Mar 8th, 2008 |
| Replies: 2 Views: 274 Re: How's it look? It looks too flashy/graphical without really having much design put into it. Sort of like you just put down a background graphic and slapped a whole bunch of links and content on top of it. |
Forum: Website Reviews Mar 8th, 2008 |
| Replies: 3 Views: 310 |
Forum: Website Reviews Mar 8th, 2008 |
| Replies: 20 Views: 1,494 Re: Personal Website Clearly, you need work on making this website cross-browser compliant. Just because it passes the XHTML 1.0 Transitional test and whatever other standards you make your site comply to doesn't mean... |
Forum: C Mar 8th, 2008 |
| Replies: 11 Views: 550 Re: HELP ERROR Yes, 'type mismatch in redefinition' has nothing to do with how you're calling the function, it pertains to the actual function definition itself. Post your function prototype here, or if you can,... |
Forum: C Mar 8th, 2008 |
| Replies: 3 Views: 280 Re: need help with c please The error means exactly what it says. Does "menu" look like an array or a pointer to you? I should hope not... |