Do you know what are bitwise shift operators in c programming?
What do you mean by dynamic memory allocation in c? What functions are used?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
Is array a primitive data type in c?
what is the importance of spanning tree?
what is function pointer?
what is the disadvantage of using macros?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is static volatile in c?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What is the benefit of using an enum rather than a #define constant?
What is malloc return c?