Explain how are portions of a program disabled in demo versions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of scanf() and printf() functions?
Which type of language is c?
what is meant by the "equivalence of pointers and arrays" in C?
Explain what are compound statements?
change to postfix a/(b+c*d-e)
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
What is the real time usage volatile?
wat is the difference between array and pointer?
Write any data structure program (stack implementation)
Can we add pointers together?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.