dennis ritchie invented C language in AT&T bell laboratory
what is the extension of AT&T?
Answers were Sorted based on User's Feedback
Answer / keshvi
The extension of AT & T is American Telephone & Telegram Company
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / guest
Actually I believe it is American Telephone and Telegraph.
My dad worked for them for 24 and a half years.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / siva
CORRECT MEANING OF AT&T'S AMERICAN TELEPHONE AND TELEGRAPH.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / suresh
as far as i know, the answer is ADVANCED TECHNOLOGY and TECHNOLOGY
| Is This Answer Correct ? | 0 Yes | 2 No |
prototype of sine function.
1 232 34543 4567654 can anyone tell me how to slove this c question
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What is the easiest sorting method to use?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Explain what is operator promotion?
Are the outer parentheses in return statements really optional?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
Is c dynamically typed?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
How to Throw some light on the splay trees?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value