What is else if ladder?
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to initialize a variable at the time it was declared?
How can a program be made to print the line number where an error occurs?
What is optimization in c?
Do you know the difference between exit() and _exit() function in c?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What is oops c?
Do you know the difference between malloc() and calloc() function?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
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 node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Array is an lvalue or not?
What is indirect recursion? give an example?