Tagged Questions
The c-like tag has no wiki summary.
34
votes
10answers
2k views
Should I use early returns in C#?
I've learned Visual Basic and was always taught to keep the flow of the program without interruptions, like Goto, Exit and Return. Using nested ifs instead of one return statement seems very natural ...
20
votes
1answer
501 views
Random generation of C programs with floating-point
Does anyone know a random generator of C programs that include floating-point computations?
I am looking for something that would be a little bit like Csmith, except that Csmith does not generate ...
3
votes
3answers
296 views
Help extracting a block of text between matching curly braces in a c-like language
I have some documentation that I made for an HDF5 file format, which is written in the GraphViz dot language. (This is a C-like language with lots of curly braces.) This master file contains numerous ...
3
votes
5answers
2k views
Return type polymorphism in C-like languages
Why don't we see C-like languages that allow for callables with polymorphism in the return type? I could see how the additional type inference would be a hurdle, but we have plenty of languages with ...
1
vote
3answers
61 views
Bash Script Loop Out of Memory?
In bash I need to run a script that loops from i=1 to i=99999999 but it always run out of memory. Is there any workaround? or is there a max value for i?
first=1
last=99999999
...
1
vote
1answer
271 views
Where can I find the source code of C++'s generic.h?
At present, I'm using a C-like language (NXC) to control a LEGO MINDSTORMS robot. That C-like language doesn't have support for generics (or, not being C++, classes. But I digress). However, I read in ...
0
votes
4answers
34 views
Whats the point of accessing private variables through getter and setter (accessor) functions?
In classes, variables are often made private for encapsulation, and to limit the variables to a certain scope allow better error control and fewer bugs. This makes sense, as the fewer places a ...
0
votes
1answer
82 views
Sequence points in a language with left to right evaluation order?
When evaluation order is specified as "left to right" and language is a (pseudo) C-like, which are the sequence points in the following examples?
int x = 1;
int z = x-- + x; // z = 1 + 0 or z = 1 + ...
0
votes
1answer
77 views
Which bytecode based language to use when implementation and code size matter?
My requirements are these:
byte-code Virtual Machine
C-like syntax
Small implementation and code size
Garbage Collection not necessary
Would be used in constrained environments e.g. ...
0
votes
4answers
372 views
Like freopen and scanf in c#
Who knows the freopen and scanf function
functionality but in c# not in c???????
thanks