What is the difference between typedef struct and struct?
No Answer is Posted For this Question
Be the First to Post Answer
What are the back slash character constants or escape sequence charactersavailable in c?
What is a char c?
What is the difference between pure virtual function and virtual function?
How many main () function we can have in a project?
what r the cpu registers r ther?
What is bss in c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
Tell us something about keyword 'auto'.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
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); }
code for inverse a matrix