ratio,age,persentage
No Answer is Posted For this Question
Be the First to Post Answer
What is the most efficient way to store flag values?
What is I ++ in c programming?
Why clrscr is used after variable declaration?
Explain what math functions are available for integers? For floating point?
what is difference between ANSI structure and C99 Structure?
List a few unconditional control statement in c.
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 is a buffer in c?
write a program to interchange the value between two variable without using loop
define c
What are the differences between Structures and Arrays?
What is bubble sort technique in c?