Answer Posted / srujan kumar reddy
C programming is one of thousands of computer programming languages that allow users to create instructions for a computer to follow. While C has a slightly more cryptic style than some other programming languages, it's fairly easy to learn and allows you to read and write code for many different platforms. Because it's so efficient and gives the user a lot of control.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can I run c program?
Can the sizeof operator be used to tell the size of an array passed to a function?
What are variables and it what way is it different from constants?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
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); } }
How can I make sure that my program is the only one accessing a file?
What is s in c?
Write a program to print factorial of given number without using recursion?
What are structural members?
What do the functions atoi(), itoa() and gcvt() do?
What is call by value in c?
string reverse using recursion
What are the advantage of c language?
How does #define work?
all c language question