What are the types of bitwise operator?


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

Post New Answer

More C Interview Questions

Explain goto?

0 Answers  


How reliable are floating-point comparisons?

0 Answers  


What is || operator and how does it function in a program?

0 Answers  


How can a program be made to print the name of a source file where an error occurs?

0 Answers  


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers  






What is character set?

0 Answers  


Can you write a programmer for FACTORIAL using recursion?

0 Answers   ADP,


4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

6 Answers   Accenture,


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


Do you know the difference between exit() and _exit() function in c?

0 Answers  


What is the difference between typeof(foo) and myFoo.GetType()?

2 Answers   Synergy,


Is it better to use a macro or a function?

0 Answers  


Categories