Explain what standard functions are available to manipulate strings?
No Answer is Posted For this Question
Be the First to Post Answer
Is int a keyword in c?
How will you allocate memory to double a pointer?
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
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Write a program to print factorial of given number using recursion?
Is there sort function in c?
What is the function of volatile in c language?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Write a program that can show the multiplication table.
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What are the Advantages of using macro