what is the use of c program?

Answers were Sorted based on User's Feedback



what is the use of c program?..

Answer / abhi tiger

to build software applications and also provide services.

Is This Answer Correct ?    23 Yes 1 No

what is the use of c program?..

Answer / guest

it is use for make a softwares

Is This Answer Correct ?    13 Yes 5 No

what is the use of c program?..

Answer / shubham singh

This is a tool by which computer can understand our
language in binary language.

Is This Answer Correct ?    4 Yes 1 No

what is the use of c program?..

Answer /

C language is also a portable application language

Is This Answer Correct ?    5 Yes 5 No

Post New Answer

More C Interview Questions

Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

4 Answers   Accenture,


Write a program that accept anumber in words

0 Answers  


Tell us two differences between new () and malloc ()?

0 Answers   Adobe,


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

0 Answers   Google,


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  






Write a program to swap two numbers without using the third variable?

0 Answers  


Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4

3 Answers  


Explain how can a program be made to print the name of a source file where an error occurs?

0 Answers  


What math functions are available for integers? For floating point?

0 Answers  


What does c mean in standard form?

0 Answers  


What’s a signal? Explain what do I use signals for?

0 Answers  


What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;

12 Answers   TCS,


Categories