what is C?
Answers were Sorted based on User's Feedback
Answer / smily
c is a standard programming language..which is the base for
all other programming languages, but as no security...
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / manu
c is a highlevel language,c is a basic language of all
other languages,
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / pradeep kumar
C is a procedural oriented programming language.
it has fast execution compare to c++.
it is developed at bell labs by dennis ritchi.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / vamc
C (pronounced /ˈsiː/ see) is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.[2]
Although C was designed for implementing system software,[5] it is also widely used for developing portable application software.
C is one of the most popular programming languages of all time[6][7] and there are very few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ajayash
c is a programming language..before it was known as b-
language...supports all operators..
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / manish
it is a simple English alphabet C nothing else.
but we can say also C,c is a computer language but is
different only C. because C is alphabets.
| Is This Answer Correct ? | 8 Yes | 29 No |
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Explain how do you declare an array that will hold more than 64kb of data?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Why preprocessor should come before source code?
What is calloc malloc realloc in c?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is difference between array and structure in c?
What does a run-time "null pointer assignment" error mean?
What is the exact difference between '\0' and ""
How to write c functions that modify head pointer of a linked list?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }