what is c programing

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


Please Help Members By Posting Answers For Below Questions

How can I run c program?

804


Can the sizeof operator be used to tell the size of an array passed to a function?

727


What are variables and it what way is it different from constants?

876


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

1908


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); } }

2092






How can I make sure that my program is the only one accessing a file?

792


What is s in c?

716


Write a program to print factorial of given number without using recursion?

659


What are structural members?

669


What do the functions atoi(), itoa() and gcvt() do?

813


What is call by value in c?

653


string reverse using recursion

1915


What are the advantage of c language?

644


How does #define work?

734


all c language question

1993