Explain the difference between ++u and u++?
No Answer is Posted For this Question
Be the First to Post Answer
c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16
What does the message "automatic aggregate intialization is an ansi feature" mean?
How can you determine the maximum value that a numeric variable can hold?
What is the process to create increment and decrement stamen in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
what is void pointer?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
Why isnt there a numbered, multi-level break statement to break out
What is meant by keywords in c?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
Is there a way to compare two structure variables?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?