Give the rules for variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
how to copy a string without using c function
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is a pragma?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is pointer to pointer in c?
What do you mean by team??
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is difference between union and structure in c?
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