what is the main use of c where it can use the c
Answers were Sorted based on User's Feedback
Answer / umed sharma
The main use of C-language we can't describe because C is a such of powerful language that can make operating system of any type and also other type of software with great utilities and tools. By using a good logic we can create good software for any problem using C.
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain the priority queues?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is difference between structure and union?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
what is dangling pointer?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
How we can set and clear bit in a byte using macro function?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
what is the main use of c where it can use the c
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
Can you please explain the difference between malloc() and calloc() function?