what is the full form of c language
Answer Posted / 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 |
Post New Answer View All Answers
Differentiate between a structure and a union.
How can you allocate arrays or structures bigger than 64K?
How can I do graphics in c?
What are the c keywords?
How can I write a function that takes a format string and a variable number of arguments?
Is c compiled or interpreted?
Why c is called a middle level language?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What does stand for?
Explain how can I read and write comma-delimited text?
When c language was developed?
Define circular linked list.
Explain what is dynamic data structure?
What is unary operator?
What is double pointer in c?