Why c is called free form language?
No Answer is Posted For this Question
Be the First to Post Answer
In a byte, what is the maximum decimal number that you can accommodate?
What is %d used for?
Why dont c comments nest?
Explain the properties of union.
What is the difference between far and near ?
main() { int a; a=++100; printf("%d",a); getch(); }
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
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Explain union. What are its advantages?
Simplify the program segment if X = B then C ← true else C ← false
how can we use static and extern?and where can we use this?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?