What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / jyotheeswar
C is a compiler based language so, C is nothing but Compiler
| Is This Answer Correct ? | 9 Yes | 19 No |
Answer / rahul
It is named c because it came after BCPL since the second
letter of BCPL after B is C, hence named as C and not
because C comes after B in English .
It is widely used for developing system level softwares and
applications.
| Is This Answer Correct ? | 4 Yes | 14 No |
Answer / karthik
when C-language is launched.. there was an another language
with names A and B. so,to follow sequence it is named as C
| Is This Answer Correct ? | 13 Yes | 26 No |
Is array name a pointer?
What are different storage class specifiers in c?
What are types of preprocessor in c?
writ a program to compare using strcmp VIVA and viva with its output.
Write a pro-gramme to determine whether the number is even or odd?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is meant by errors and debugging?
what is data structure.in linear and non linear data structures which one is better?Explain
What is c language and why we use it?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
What is the purpose of the preprocessor directive error?
What is the use of printf() and scanf() functions?