Please tell me the difference between C programming language and C scripting language .Both are same or different?and if its different tell me good link to learn C scripting as beginer
-
2There is no "C scripting language"Aaron McDaid– Aaron McDaid2015-01-30 08:56:08 +00:00Commented Jan 30, 2015 at 8:56
-
@AaronMcDaid over the years C exists many developers tried to create such language, see here: stackoverflow.com/questions/584714/…myaut– myaut2015-01-30 08:57:55 +00:00Commented Jan 30, 2015 at 8:57
-
1There is no distinction. My guess is that some folk refer to "quick and dirty c" as being C scripting. Or perhaps even C that's passed through an interpreter rather than compiled. If you want to learn C the best book IMO is the one by Kernighan and Ritchie, and make sure you complete all the example exercises.Bathsheba– Bathsheba2015-01-30 08:58:30 +00:00Commented Jan 30, 2015 at 8:58
-
Googling yields: There /is/ at least one C-scripting language even going by that name: csl.sourceforge.net/csl.htmlBitTickler– BitTickler2015-01-30 08:59:38 +00:00Commented Jan 30, 2015 at 8:59
-
1As a beginner, you might take interest in the question: Which "real" and which scripting languages are worth investing the time to learn them?BitTickler– BitTickler2015-01-30 09:05:40 +00:00Commented Jan 30, 2015 at 9:05
|
Show 2 more comments
1 Answer
By "C scripting language", you probably mean this: http://csl.sourceforge.net/csl.html or some other project to create an interpretable version of C (see Is there an interpreter for C?)
What's the difference? Well, "C" normally refers to a compiled version of the language, and "C scripting language" normally refers to an interpreted one. That's all there is to it. From the point of view of the language's standard, there might not be an actual difference between a compiled and an interpreted implementation if both follow the standard.
5 Comments
juanchopanza
C is just a language. Needing to be compiled is not part of the language specification.
juanchopanza
Thanks for clarifying. I removed my down-vote. It is hard to give good answers to ill-defined questions.
BitTickler
@Mints97 I will give you an up vote if you add to your answer, that the difference between c and c scripting languages is, that C is worth learning, while there are tons of more vital scripting languages to learn than some random c-scripting language.
shivi
Its not an ill-defined question....