what is the full form of c language
Answers were Sorted based on User's Feedback
Answer / guest
the answer of this question is that,the full name of c
language is {compile-language}.!
| Is This Answer Correct ? | 23 Yes | 9 No |
Answer / varanasi malikarjun
I want a best and simple methods of C language material. will you provide this material to my id please!!!!!!!!!!!!!!!!!!
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / varanasi malikarjun
May be this language name suited for Compile language. Why because this language is gateway of the all languages. So, we can accept this name as compile language.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / priyesh.
there is no any type of correct full form of C. till now
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / yatin mulay
The answer is "Common or cristofer".....Cristofer is
computer pioneer of oxferd univercity....
This answer is refer from book "Art of Unix Operating
System"....
Please correct if I am wrong
| Is This Answer Correct ? | 0 Yes | 6 No |
Answer / yatin mulay
The answer is "Common or cristofer".....Cristofer is
computer pioneer of oxferd univercity....
This answer is refer from book "The Art of Unix
Programming"....
Please correct if I am wrong
| Is This Answer Correct ? | 0 Yes | 7 No |
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Why do we use main function?
What is the need of structure in c?
Explain can static variables be declared in a header file?
explain what are actual arguments?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
Dont ansi function prototypes render lint obsolete?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Write a program to print numbers from 1 to 100 without using loop in c?
main() { int a; a=++100; printf("%d",a); getch(); }
What is file in c language?
what is pointer ? what is the use of pointer?