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 |
What is the use of putchar function?
print a "hello" word without using printf n puts in c language
Write a program which returns the first non repetitive character in the string?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
Why doesn't the code "a[i] = i++;" work?
code for quick sort?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
char ch="{'H','I',0};printf("%s",ch);what is output