dennis ritchie invented C language in AT&T bell laboratory
what is the extension of AT&T?
Answer Posted / siva
CORRECT MEANING OF AT&T'S AMERICAN TELEPHONE AND TELEGRAPH.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why & is used in scanf in c?
Explain the process of converting a Tree into a Binary Tree.
Write a progarm to find the length of string using switch case?
What is operator precedence?
write a programming in c to find the sum of all elements in an array through function.
What is 02d in c?
How can I pad a string to a known length?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is a pragma?
What is a good data structure to use for storing lines of text?
Write a program to reverse a given number in c?
Explain Function Pointer?
Is fortran still used today?
Why do we use header files in c?
What is double pointer in c?