Answer Posted / arunkumar
In America AT & T Bell laboratory Mr.Dennis Richie invented
the c.The BCPL is before the invention of c Language.
| Is This Answer Correct ? | 31 Yes | 5 No |
Post New Answer View All Answers
What is a protocol in c?
Can you define which header file to include at compile time?
Why is python slower than c?
What are the advantage of c language?
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); } }
about c language
What is the basic structure of c?
Write a program to reverse a string.
Is array a primitive data type in c?
How reliable are floating-point comparisons?
How many keywords (reserve words) are in c?
Why are all header files not declared in every c program?
Explain the use of 'auto' keyword
What is data type long in c?
How can I manipulate strings of multibyte characters?