What are the commands should be given before weiting C
Program i.e, Cd.. like
Post New Answer View All Answers
What is bubble sort in c?
What is the significance of c program algorithms?
Does * p ++ increment p or what it points to?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
How can I write functions that take a variable number of arguments?
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.
Write a program to know whether the input number is an armstrong number.
What is %d called in c?
What are the differences between Structures and Arrays?
What is the difference between procedural and declarative language?
Explain high-order and low-order bytes.
What are the 4 types of programming language?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above