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
What are local variables c?
WHAT IS PRE POSSESSORS?
What is #line used for?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Is there a way to switch on strings?
program to find a smallest number in an array
what is the difference between postfix and prefix unary increment operators?
What is the easiest sorting method to use?
What's a "sequence point"?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Why main is not a keyword in c?
Is return a keyword in c?