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 is the use of extern in c?
How do you redirect a standard stream?
Explain how can I remove the trailing spaces from a string?
What are the application of void data type in c?
what is the role you expect in software industry?
how we can make 3d venturing graphics on outer interface
What is an operator?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the difference between constant pointer and pointer to a constant. Give examples.
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
char ch="{'H','I',0};printf("%s",ch);what is output