what is the use of c program?
Answer Posted / abhi tiger
to build software applications and also provide services.
| Is This Answer Correct ? | 23 Yes | 1 No |
Post New Answer View All Answers
How can you read a directory in a C program?
Difference between macros and inline functions? Can a function be forced as inline?
Can main () be called recursively?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Why is c so powerful?
What is zero based addressing?
Explain what is wrong with this statement? Myname = ?robin?;
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Write a code on reverse string and its complexity.
What is an auto keyword in c?
c program to compute AREA under integral
What is the difference between variable declaration and variable definition in c?
Explain how do you use a pointer to a function?
What is meant by high-order and low-order bytes?
How to implement a packet in C