who invented c

Answer Posted / sandeep

dennis ritchie at bells labs in the year 1972

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there a way to jump out of a function or functions?

636


How can you restore a redirected standard stream?

610


In a switch statement, what will happen if a break statement is omitted?

604


What is the use of sizeof () in c?

558


How is a structure member accessed?

585






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.

1065


How was c created?

589


What is the use of extern in c?

649


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

754


What are the types of macro formats?

610


When should I declare a function?

623


Define recursion in c.

702


What is the difference between memcpy and memmove?

605


What is the advantage of an array over individual variables?

744


What is the value of uninitialized variable in c?

576