WHO WROTE C LANGUAGE?
Answers were Sorted based on User's Feedback
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Explain bitwise shift operators?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is null pointer constant?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What is a pointer in c plus plus?
what is use of loop?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
c program to arrange digits in a no in ascending and descending order
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
is c language is a object oreinted language?