What is the purpose of sprintf() function?
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); }
When should the register modifier be used? Does it really help?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
how to go with this?
What is the process to generate random numbers in c programming language?
What are local static variables? How can you use them?
what is the main use of c where it can use the c
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
with out using main how to execute the program?
What is meant by high-order and low-order bytes?
What functions are used in dynamic memory allocation in c?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n