Where static variables are stored in memory in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can we write a program without main() function?
What is the use of linkage in c language?
Explain the meaning of keyword 'extern' in a function declaration.
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
Tell me can the size of an array be declared at runtime?
What is malloc() function?
difference between ordinary variable and pointer in C?
What is alloca() and why is its use discouraged?
main() { printf("hello"); fork(); }
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
c program to subtract between two numbers without using '-' sign and subtract function.