-5

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

7
  • 2
    There is no "C scripting language" Commented 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/… Commented Jan 30, 2015 at 8:57
  • 1
    There 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. Commented 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.html Commented Jan 30, 2015 at 8:59
  • 1
    As a beginner, you might take interest in the question: Which "real" and which scripting languages are worth investing the time to learn them? Commented Jan 30, 2015 at 9:05

1 Answer 1

2

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.

Sign up to request clarification or add additional context in comments.

5 Comments

C is just a language. Needing to be compiled is not part of the language specification.
@juanchopanza: you're perfectly right, I didn't make it clear enough originally. And-wow-2 downvotes in, like, 2 seconds! =)
Thanks for clarifying. I removed my down-vote. It is hard to give good answers to ill-defined questions.
@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.
Its not an ill-defined question....

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.