Explain how do you generate random numbers in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
write a function for strtok()??
What is the symbol indicated the c-preprocessor?
Can math operations be performed on a void pointer?
what is the difference between char * const and const char *?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What does %c do in c?
read a number & print all its devisors using c-program?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
What is wrong with this program statement?
Can stdout be forced to print somewhere other than the screen?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }