What are the general description for loop statement and available loop types in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
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
Explain what is the benefit of using an enum rather than a #define constant?
What should not contain a header file?
What is assignment operator?
What does %c mean in c?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
What is null pointer in c?
Why are all header files not declared in every c program?
When would you use a pointer to a function?
what is the output of below int n=10; (n++)++; printf("%d",n);
Can a pointer be static?