top button
Flag Notify
Site Registration

What is C language and what is its use?

0 votes
263 views
What is C language and what is its use?
posted Nov 1, 2015 by Unknown

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
What is the question, can u describe in more detail...

1 Answer

0 votes

C is a System Programming Language,it is used for writing compilers,editors and even operating systems.
C was developed and implemented on the UNIX operating system by Dennis M.Ritchie in 1972.
C is language for small and fast programmer.

answer Nov 2, 2015 by Sanoj Kumar
Similar Questions
+3 votes
#include <stdio.h>
int main()
{
    char vowels[5]={'a','e','i','o','u'};
    int x;

    printf("Vowel Letters");
    for(x=0;x<=5;x++)
    {
         printf("\n %C",vowels[x]);
    }
}

Output

Vowel Letters
a
e
i
o
u
♣
Process exited after 0.1132 seconds with return value 3

What is the meaning of return value 3

...