What is an arrays?
No Answer is Posted For this Question
Be the First to Post Answer
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
what do you mean by enumeration constant?
what are bit fields in c?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
What are the different properties of variable number of arguments?
What is a Genralised LInked List?? Please give a detailed explation of it..
Where can I get an ansi-compatible lint?
how logic is used
Why c is called a middle level language?
What is the scope of local variable in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
what is a static function