Answer Posted / varun kumar
C is the language which easy understand by the
machine.Because it is also called the machine language.it
convert the source code into object code then into machine
code.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What are the 5 types of inheritance in c ++?
What is header file definition?
Is a pointer a kind of array?
What are the different file extensions involved when programming in C?
What is malloc calloc and realloc in c?
What is difference between stdio h and conio h?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
write a program for the normal snake games find in most of the mobiles.
What is the difference between array and pointer in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is difference between && and & in c?
Explain the bubble sort algorithm.