What is abstract data structure in c?
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); }
How to set a variable in the environment list?
Explain main function in c?
while initialization of array why we use a[][2] why not a[2][]...?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What is calloc in c?
code for inverse a matrix
Why ca not I do something like this?
In which category does main function belong??
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How can we allocate array or structure bigger than 64kb?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }