What is meant by 'bit masking'?
No Answer is Posted For this Question
Be the First to Post Answer
What is typeof in c?
no consistent academics. how to answer the question
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
What are the two forms of #include directive?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
What is optimization in c?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
swap two integer variables without using a third temporary variable?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
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,
print 1-50 with two loop & two print Statement
What does the message "automatic aggregate intialization is an ansi feature" mean?