c language supports bitwise operations, why

a) 'c' language is system oriented

b) 'c' language is problem oriented

c) 'c' language is middle level language

d) all the above


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

Post New Answer

More C Interview Questions

Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix

0 Answers   CLG,


Explain Function Pointer?

0 Answers   Wipro,


How to compare array with pointer in c?

0 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


When should a type cast not be used?

0 Answers  






How do shell structures work?

0 Answers  


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

0 Answers  


Can we declare variables anywhere in c?

0 Answers  


Can we include one C program into another C program if yes how?

7 Answers   Infosys,


What is the use of keyword VOLATILE in C?

1 Answers  


What is the difference between GETS();AND SCANF();

4 Answers   TCS,


Explain how do you override a defined macro?

0 Answers  


Categories