Tagged Questions
-4
votes
2answers
105 views
Any complete video tutorials for learning C? I do not know even the ABC of programming [closed]
Any complete video tutorials for learning C? I do not know even the ABC of programming.
FYI: I'am a web designer.
I am planning to self learn.
2
votes
0answers
131 views
CoffeeScript translates to JavaScript. Is there something like it for C? [closed]
Possible Duplicate:
Is there a language that transcompiles to C with a better syntax?
There are many language implementations which compile to C. However, most of them have some language ...
24
votes
4answers
1k views
C is written in C, how is this possible? [closed]
Possible Duplicate:
How could the first C++ compiler be written in C++?
I know my question goes to the underground galaxy cave where languages are born and involves some lambda math and ...
33
votes
13answers
2k views
What makes C so popular in the age of OOP?
I code a lot in both C and C++, but did not expect C to be the second most popular language, slightly behind Java.
TIOBE Programming Community Index
I'm curious as to why, in this age of OOP, C is ...
0
votes
1answer
117 views
going from C,C++ to php [closed]
I need some good professional advice from some of you.
Till now I had worked in c and C++ with having a good exposure to telecom background.This is around 8 years since I am working on these ...
2
votes
1answer
179 views
Do C library functions generally mimic the Intel assembly language style?
I'm looking at the basic strcpy function. It is
char *strcpy( char *dest, const char *src );
Which reminds me of assembly language: MOV DEST, SRC
17
votes
5answers
1k views
Why are several popular programming languages influenced by C? [closed]
The Top 10 programming languages, according to the TIOBE index seem to be heavily influenced by C:
1. Java
The language derives much of its syntax from C and C++ but has a simpler object model ...
2
votes
5answers
722 views
Correct For Loop Design
What is the correct design for a for loop?
Felix currently uses
if len a > 0 do
for var i in 0 upto len a - 1 do
println a.[i];
done
done
which is inclusive of the upper bound. This ...
-2
votes
2answers
203 views
Why we still need C in terms of development for high level programming modules? [closed]
Possible Duplicate:
I don't know C. And why should I learn it?
I was kind of awkward in coding with C, though I am somewhat familiar with it. I like Java and C#. The reason I like to ...
5
votes
3answers
291 views
Why is scanf called scanf? (Same for printf.)
I am just curious why in the C programming language the function to read formatted input was called "scanf" as opposed to "readf". I assume it is derived from an earlier language, so in that case why ...
3
votes
8answers
643 views
Why has the rate of programming language popularization slowed down in recent decades? [closed]
If I understand correctly, there was a huge birth of programming languages during the early decades of computing, but then things have stabilized.
Basically, why are many universities and industries ...
1
vote
8answers
449 views
Is C a MUST-learn language for programmer? [closed]
Possible Duplicate:
I don't know C. And why should I learn it?
I start my programming from Java, and learned PHP. Also, because of the work, I learned Objective-C. But most of the ...
26
votes
9answers
2k views
Why has C prevailed over Pascal?
My understanding is that in the 1980s and perhaps in the 1990s, too - Pascal and C were pretty much head-to-head as production languages.
Is the ultimate demise of Pascal only due to Borland's ...
57
votes
16answers
4k views
Do the young minds need to learn the pointer concepts?
Why did the C master Dennis Ritchie introduce pointers in C? And why did the other programming languages like VB.NET or Java or C# eliminate them? I have found some points in Google, and I want to ...
7
votes
3answers
929 views
How could the first C++ compiler be written in C++?
I'd always thought the first C++ compiler was written in assembly, until I found this:
The first C++ compiler (Cfront) was written in C++
I believe the rest of the paragraph in that page is trying ...