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
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
What is the difference between union and anonymous union?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
What are lookup tables in c?
What does struct node * mean?
What is assignment operator?
What are the loops in c?
given post order,in order construct the corresponding binary tree
Write program to remove duplicate in an array?