Why is C called a middle-level language?
Answer / nashiinformaticssolutions
It combines features of high-level and low-level languages.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a node in c?
1 What is a Data Structure?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Which is more efficient, a switch statement or an if else chain?
What is the difference between typeof(foo) and myFoo.GetType()?
Is the following code legal? struct a { int x; struct a b; }
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the difference between exit() and _exit() function in c?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
say the following declaration is correct nr not. int b=a,n=0;
An array name contains base address of the array. Can we change the base address of the array?
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.