How do you generate random numbers in C?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of scanf() and printf() functions?
What is pass by value in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Explain what are its uses in c programming?
What are local static variables? How can you use them?
Why void main is used in c?
How can I get the current date or time of day in a c program?
what is the difference between procedure oriented and object oriented progaming language
write program on arrays
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What is the purpose of 'register' keyword in c language?