What is printf () in c?
What are variables c?
what is the need for main function in c?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
how to find the size of the data type like int,float without using the sizeof operator?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
is forign key will be unique key any table or not?
what do u mean by Direct access files? then can u explain about Direct Access Files?
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
How to receive strings with spaces in scanf()
What are the two types of structure?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.