process by which one bit patten in to another by bit wise
operation is?
(a) masking,
(b) pruning,
(c) biting,
(d) chopping,
No Answer is Posted For this Question
Be the First to Post Answer
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
What is difference between structure and union in c programming?
Why cann't whole array can be passed to function as value.
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)
What is #define size in c?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What's the total generic pointer type?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Where are some collections of useful code fragments and examples?