Explain the advantages of using macro in c language?
No Answer is Posted For this Question
Be the First to Post Answer
how to print this sereis 2 4 3 6 5..........?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
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,
how to determine the complexity of an algorithm as log(n)
What are the general description for loop statement and available loop types in c?
Explain how do you list a file’s date and time?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
what is void pointer?
what is the difference between structural,object based,object orientd programming languages?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.