How to write a multi-statement macro?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is calloc()?
what is the use of keyword volatile??
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
What is #define in c?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
How we can write a value to an address using macro..?
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,
Can you assign a different address to an array tag?
What is use of integral promotions in c?