What are the c keywords?
No Answer is Posted For this Question
Be the First to Post Answer
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.
write a program to display the array elements in reverse order in c language
What is "Duff's Device"?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Can a variable be both constant and volatile?
Reverse a string word by word??
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
What are the uses of a pointer?
What is the use of bit field?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What is the difference between typedef struct and struct?