Explain built-in function?
No Answer is Posted For this Question
Be the First to Post Answer
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
What is a method in c?
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is storage class?
Write program to remove duplicate in an array?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
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,
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is double pointer in c?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
can we print any string without using terminator?