Can two or more operators such as
and be combined in a single line of program code?
No Answer is Posted For this Question
Be the First to Post Answer
What are shell structures used for?
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.
how to write a program which adds two numbers without using semicolon in c
What is variable in c example?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
What's the difference between calloc() and malloc()?
What is a nested formula?
What are the parts of c program?
How we can write a value to an address using macro..?
what is the need for main function in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code