Here is a neat trick for checking whether two strings are equal
No Answer is Posted For this Question
Be the First to Post Answer
WHO WROTE C LANGUAGE?
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
What is encapsulation?
char ch=10;printf("%d",ch);what is the output
what is difference between c and c++
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
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
What is infinite loop?
What is graph in c?
How to removing white spces in c programming only bu using loops
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }