Re: Do you participate in any other communities? Community Center Geeks' Lounge by Salem I'm a long-time moderator on cprogramming.com, but it's getting awfully quiet on many of the old forums. DiC was a loss, as was devshed. I seem to be most active now on reddit. cprogramming enrollment system help Programming Software Development by anjoz help on this enrollment system in cprogramming when I run the programming the output sometimes fall through … Re: What do you think of www.cprogramming.com Community Center by John A >I just get really tired at their inane conversations. Perfect example of CProgramming threads. [url]http://cboard.cprogramming.com/showthread.php?t=88048[/url] What do you think of www.cprogramming.com Community Center by darrglud What do you guys (or gals) think about [URL]http://www.cprogramming.com/[/URL]? Is is a good place to learn C++ (and C) or not? How about [URL="http://www.iu.hio.no/%7Emark/CTutorial/CTutorial.html#Preface"]http://www.iu.hio.no/%7Emark/CTutorial/CTutorial.html[/URL]? Please send me your response. Re: What do you think of www.cprogramming.com Community Center by John A … do you guys (or gals) think about [URL]http://www.cprogramming.com/?[/URL] It's a really well-made site that… Re: cprogramming enrollment system help Programming Software Development by gerard4143 I tried compiling your program and got numerous errors test.c:4:1: warning: return type defaults to ‘int’ test.c: In function ‘main’: test.c:19:2: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘char (*)[50]’ test.c:36:2: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘char (*)[10]’ test.c:52:4: warning: … Re: cprogramming enrollment system help Programming Software Development by Adak If you use scanf(), you have to know what scanf() does and does not do: 1) For char input, scanf() will take *ONE and one ONLY* char. That means that the newline char from hitting the enter key, is still in the keyboard buffer. Which means that the NEXT scanf() for a char will be taking the newline FIRST, and say "I've got my char, so I'm … cprogramming file handling help Programming Software Development by anjoz Hey im kinda new in file handling so can you guys help me out im having a hard time delete data from my .txt file the one here in my code workes but when I example [CODE] printf("Enter Record to be deleted: "); scanf("%s",del); if(strcmp(line, del) !=0) [/CODE] the data that i want to delete dosent get deleted by if i use… Re: cprogramming file handling help Programming Software Development by Adak It's dicey to overwrite data in a file - any error, even a disk error, can ruin the entire file, until the file is rebuilt. That is a time consuming process, which may not fix all the data, anyway. So what to do? Most programs do it this way: When a record should be deleted, you don't actually delete it, you just mark the record ID number … Re: What do you think of www.cprogramming.com Community Center by Ancient Dragon moved Re: What do you think of www.cprogramming.com Community Center by Rashakil Fol There are some people there who respond to a lot of posts without really knowing or understanding anything. There are a lot of people who do that here. That's okay; just pay attention whenever Bubba or Prelude or Salem or Dave Sinkula or Mad_Guy say anything. And machines like quzah are great. There are several real idiots, though, who say … Re: What do you think of www.cprogramming.com Community Center by John A >There are some people there who respond to a lot of posts without really knowing or understanding anything. Is that different from other forums? You're going to have stupid people around in any situation, whether it be real-life, or just on the Internet... >There are several real idiots, though, who say things that come from their own … Re: What do you think of www.cprogramming.com Community Center by jbennet didnt you used to be a mod at cboard, joeprogrammer? Re: What do you think of www.cprogramming.com Community Center by John A [quote=jbennet;335980]didnt you used to be a mod at cboard, joeprogrammer?[/quote] HAHAHAHAHAHAHA!!!!!!! ROFL.... No way man, not even a chance... Re: What do you think of www.cprogramming.com Community Center by jbennet maybe that was someone else... oh well... (my memory is really bad :)) Re: What do you think of www.cprogramming.com Community Center by Rashakil Fol I'm definitely not referring to you joeprogrammer. Re: What do you think of www.cprogramming.com Community Center by John A >I'm definitely not referring to you joeprogrammer. Are you so sure? Have you seen my posts? They're awful! For some reason they seem to improve dramatically at DaniWeb. Either that or the expertise of the posters is lower here. ;) Re: What do you think of www.cprogramming.com Community Center by ~s.o.s~ Heh really an interesting thread...From a "beginner asking for advice" to "I will definately take revenge"...Oh, what has this world come to... :D Re: What do you think of www.cprogramming.com Community Center by jwenting revenge on beginners or revenge of the beginners? Re: What do you think of www.cprogramming.com Community Center by ~s.o.s~ Revenge of ex-mod... :D Re: What do you think of www.cprogramming.com Community Center by John A >Revenge of ex-mod... Which is who...? Learn before asking!!!!! Programming Software Development by )BIG"B"Affleck …] [size=2][url="http://www.cprogramming.com/"][u][b][color=red]http://www.cprogramming.com/[/color][/b][/u][/url][/size… BASIC-BASIC C++ "your first compiler..." Programming Software Development by wingwarp … tutorial links: [URL="http://www.cprogramming.com/tutorial.html#c++tutorial"]http://www.cprogramming.com/tutorial.html#c++tutorial[/URL… Please help with C++ linked list Programming Software Development by strungoutfan78 … code here: [URL="http://www.cprogramming.com/tutorial/lesson15.html"]http://www.cprogramming.com/tutorial/lesson15.html[/URL] to start… Re: Starting " C " Programming Software Development by Dave Sinkula …]comp.lang.c FAQ[/url] [*][url=http://faq.cprogramming.com/cgi-bin/smartfaq.cgi]Cprogramming.com FAQs[/url] [*][url=http://www.comeaucomputing… Re: Open Gl Programing Error (help)... Programming Game Development by wingwarp … 26, 2003 - UPDATE RobotOGL.cpp [EMAIL="rod@cprogramming.com"]rod@cprogramming.com[/EMAIL] The following program creates a window and… Re: Doubts about References Programming Software Development by Narue … see the contradiction. Both articles say the same thing, except cprogramming takes a programmer's perspective and Code Project takes an… of pointers. The whole premise for their argument is unsound. cprogramming is more accurate and describes the whole feature better. The… Re: General C Questions and Specific Variable-Type Questions Programming Software Development by Narue … get your questions answered would be forums like this (or cprogramming.com) where there are people knowledgeable about C. Otherwise, just… with a few minor changes. [B]>[url]http://www.cprogramming.com/[/url] seems to have some of the information that… For the newbees (like myself) Programming Software Development by Gollum1 … worry about getting lost right away. :cheesy: [url]http://www.cprogramming.com/[/url] If anybody else knows of good resource sites… Reverse Output (Stack) Programming Software Development by silicon Hi everyone, I've been taking a class on cprogramming and have been successful up thus far. I am now …