Program to find the absolute value of given integer using
Conditional Operators
Answer Posted / susanta datta
16
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Can a pointer point to null?
what is uses of .net
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the purpose of the statement: strcat (S2, S1)?
What are nested functions in c?
What is the maximum no. of arguments that can be given in a command line in C.?
How will you divide two numbers in a MACRO?
What is static and volatile in c?
how to find binary of number?
What is the scope of global variable in c?
Explain the priority queues?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain enumerated types in c language?
What is the size of array float a(10)?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.