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 extern storage class in c?
What is variable and explain rules to declare variable in c?
What are the application of void data type in c?
what is level of tree if leaf node is at level 4.please explain.
which is faster execution: loops or recursion?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain the use of 'auto' keyword in c programming?
why do some people write if(0 == x) instead of if(x == 0)?
Write a program to reverse a linked list in c.
What are static variables in c?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }