How can I use a preprocessorif expression to ?


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

Post New Answer

More C Interview Questions

how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.

2 Answers  


a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..

1 Answers  


is forign key will be unique key any table or not?

2 Answers  


char ch="{'H','I',0};printf("%s",ch);what is output

9 Answers   Accenture,


What are identifiers and keywords in c?

0 Answers  






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

1 Answers  


What are global variables and explain how do you declare them?

0 Answers  


what is object oriental programing?

1 Answers  


how to write a prog in c to convert decimal number into binary by using recursen function,

1 Answers  


please give me some tips for the placement in the TCS.

0 Answers   TCS,


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,


what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }

1 Answers   Google,


Categories