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 |
Explain the difference between malloc() and calloc() function?
how to write optimum code to divide a 50 digit number with a 25 digit number??
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
write a program to add two numbers of any size.....(remember any size)
Give a method to count the number of ones in a 32 bit number?
What is main function in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What are c preprocessors?
application attempts to perform an operation?
How can I change the size of the dynamically allocated array?
What is an lvalue and an rvalue?