How #define works?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are predefined functions in c?

0 Answers  


Explain why C language is procedural?

0 Answers   GE,


a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6

7 Answers   TCS,


consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value

4 Answers   TCS,


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  






Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

8 Answers   Aspire,


what is the stackpointer

2 Answers  


What does the function toupper() do?

0 Answers  


What is #include cctype?

0 Answers  


How can I find out the size of a file, prior to reading it in?

0 Answers  


write a function to find whether a string is palindrome or not and how many palindrome this string contain?

2 Answers   Aptech,


in linking some of os executables are linking name some of them

0 Answers   IBM,


Categories