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
Explain how can I convert a number to a string?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What functions are used in dynamic memory allocation in c?
What are # preprocessor operator in c?
What is default value of global variable in c?
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
What is encapsulation?
How can I automatically locate a programs configuration files in the same directory as the executable?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
Is fortran faster than c?
What is sizeof in c?