Remo.D
|
Registered User
|
Old school programmer, I still prefer C over other languages.
|
|
2d |
awarded | ● Mortarboard |
|
Dec 5 |
awarded | ● Citizen Patrol |
|
Dec 5 |
comment |
Introduction to GUI programming with c The biggest problem I see is that is C++ and not C as the OP asked... |
|
Dec 5 |
comment |
C style printf/scanf Ease of explanation is the only advantage I can see. But doesn't this translate to teacher's lazyness? :) |
|
Dec 5 |
comment |
C style printf/scanf I agree that is less prevalent, but there are cases where a GUI would be overkill or plainly incorrect. I would prefer that teachers and introductory books would not promote an interaction style that has no advantages over the "correct" way (that I think matters :) ) |
|
Dec 5 |
comment |
C style printf/scanf Agreed. Can I summarizing saying that you, as a user, would prefer to have a program using readline to handle your input rather than being left on a wild terminal waiting on a scanf() ? |
|
Dec 5 |
comment |
C style printf/scanf @David. I was pointing to the fact that a program should not "ask a question" and "wait for a response". Either the user can set up the input data upfront (and the program will get data via command line or a file) or he should be given a proper user interface. It may be as simple as using GNU readline (as one of the answers mentioned), non portable using termio or conio, graphical (possibly using tcl/tk) etc. My point is that the style answer/response in user interaction should not be promoted but I was looking for arguments in favour of this style. |
|
Dec 5 |
comment |
C style printf/scanf @Neil. Yes, and that means that you have no control on what the user sees/does on his terminal. My concern is that (future) progammers are thaught that it is ok wait for a scanf() for user input while we know that user's terminal setting may make difficult to enter data. The reference to ^H was for terminals that show ^H instead of doing a backspace. Advanced users know how to work around problems with terminal settings but casual users might be stuck. It still seems to me that it's something that should'nt be thaught as it may generate bad habits. |
|
Dec 4 |
comment |
[C] Why return a negative errno? (e.g. return -EIO) Tags are enough for me, SO takes care of highlighting the messages with tags I'm interested in. "[C]" is just noisy for me (but I respect your tastes and won't edit the title :) ) |
|
Dec 4 |
awarded | ● Civic Duty |
|
Dec 4 |
asked | C style printf/scanf |
|
Dec 4 |
comment |
Regarding macros Does this work with C? |
|
Dec 4 |
awarded |
● |
|
Nov 28 |
comment |
Typesetting programs Lout comes with prg2lout, a program to typeset source code. It's main advantage over TeX is its size: the latest source distribution (that includes full documentation on Postscript) is just 2.1Mb. |
|
Nov 28 |
revised |
The Greedy Option of Regex is really needed? added 490 characters in body; deleted 34 characters in body; added 66 characters in body |
|
Nov 28 |
comment |
The Greedy Option of Regex is really needed? Greediness in regex is a byproduct of the "longest leftmost match" rule. There's not a real "need" for it. I'll try to rephrase better my answer to make it more clear. |
|
Nov 28 |
comment |
The Greedy Option of Regex is really needed? I interpreted as a question whether non-greedy would have been more meaningful as default behaviour. Now that I re-read the question, I'm no longer sure ... |
|
Nov 28 |
revised |
The Greedy Option of Regex is really needed? added 76 characters in body; added 133 characters in body |
|
Nov 28 |
answered | The Greedy Option of Regex is really needed? |
|
Nov 28 |
revised |
Memorable 32-bit value as a constant edited tags |
|
Nov 24 |
comment |
Run EXE FROM CLIENT SIDE Let's hope you can't, imagine clicking on a link and having format.exe run on your pc. Not very pleasent. |
|
Nov 23 |
accepted | Making a perfect hash (all consecutive buckets full), gperf or alternatives? |
|
Nov 22 |
comment |
Do you listen to anything while programming? +1 for magnatune and the instrumental. Let me add Jamendo (jamendo.com) |
|
Nov 21 |
comment |
Finite State Machine program ... more importantly, how are you going to represent the "definition of what each state is supposed to do"? You should provide some more information on what you need to do. |
|
Nov 21 |
answered | Good STL-like library for C. |
|
Nov 21 |
revised |
C - the most useful user-made C-macros (in GCC, also C99) ? added 3 characters in body; added 18 characters in body |
|
Nov 21 |
revised |
Well working and comprehensive ADT for C deleted 4 characters in body |
|
Nov 20 |
answered | Well working and comprehensive ADT for C |
|
Nov 20 |
comment |
Disabling NUL-termination of strings in GCC I'm sure you have good reasons for doing this but, if I understand how buffer overrun exploits work, having the string on the stack is more dangerous than having them allocated on the heap. About adding the '\0' at the end, I don't see how the content of string is copied into temp, and I think that you're using a gcc extension rather than C99. |
|
Nov 20 |
revised |
Segmentation Fault With Char Array and Pointer in C on Linux edited body |
|
Nov 20 |
answered | Segmentation Fault With Char Array and Pointer in C on Linux |
|
Nov 20 |
revised |
C - the most useful user-made C-macros (in GCC, also C99) ? added 890 characters in body; edited body |
|
Nov 20 |
revised |
C - the most useful user-made C-macros (in GCC, also C99) ? added 60 characters in body |
|
Nov 20 |
revised |
C - the most useful user-made C-macros (in GCC, also C99) ? added 149 characters in body |
|
Nov 20 |
comment |
C - the most useful user-made C-macros (in GCC, also C99) ? @nikie because the C99 inline specification for functions is not supported by many compilers. |
|
Nov 20 |
answered | C - the most useful user-made C-macros (in GCC, also C99) ? |
|
Nov 20 |
comment |
C - the most useful user-made C-macros (in GCC, also C99) ? and I think it's not right too. There are things you can do with macros that you can't do with functions. The fact that somebody could abuse macros it's not an argument for suggesting they should be forbidden |
|
Nov 20 |
answered | Disabling NUL-termination of strings in GCC |
|
Nov 20 |
revised |
Format a string in C added 1 characters in body |
|
Nov 20 |
comment |
Format a string in C Well, it looks like others alredy deprived you of the pleasure of discovery :) |
|
Nov 20 |
answered | Format a string in C |
|
Nov 20 |
revised |
Making a perfect hash (all consecutive buckets full), gperf or alternatives? added 415 characters in body |
|
Nov 20 |
answered | Making a perfect hash (all consecutive buckets full), gperf or alternatives? |
|
Nov 20 |
comment |
How to parse text with delimiters? I think this is the third time this question is asked. Is it a sort of homework or what? |
|
Nov 19 |
revised |
Restricting tcp communication to specific ip’s using C# changed tag c to c# |
|
Nov 19 |
revised |
Atomic Instruction added 28 characters in body |
|
Nov 19 |
answered | Atomic Instruction |
|
Nov 19 |
answered | Common reasons for bugs in release version not present in debug mode |
|
Nov 19 |
revised |
Detect stage of static initialization? deleted 1 characters in body |
|
Nov 19 |
answered | Detect stage of static initialization? |
