write a program to display & create a rational number
Compare array data type to pointer data type
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
write a program to display the numbers having digit 9 in the given range from 1 to 100
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 is typedef?
Explain what is the difference between functions abs() and fabs()?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What are qualifiers and modifiers c?
Who is the main contributor in designing the c language after dennis ritchie?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What are enums in c?
What is the process of writing the null pointer?