Why c language?
Answer / Muneesh Chandra
C was created as a system programming language to develop operating systems, compilers, and other low-level applications. Its design focuses on efficiency, portability, flexibility, and direct hardware manipulation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
main() { printf("hello%d",print("QUARK test?")); }
How can I convert a number to a string?
What is the difference between call by value and call by reference in c?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is a const pointer?
What does volatile do?
Is c easy to learn?
write a program whose output will be- 1 12 123 1234
What is union and structure in c?
What is c mainly used for?
What is a constant and types of constants in c?