Program to simulate second clock
Answers were Sorted based on User's Feedback
Answer / arseneok
Write a program to simulate second clock. Put the 60 dots on
the circle with equal distance each other and mark them 0 to
59.n A second pointer is to shown with any symbol. Also
print the number of revolution made by second's pointer.
Does anyone has an idea?
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / visitor
I think we must use nested for loop, with gotoxy function in
it. But i don't know how to apply this theory.
Is This Answer Correct ? | 0 Yes | 0 No |
What is meant by preprocessor in c?
What is an arrays?
Why is c called a mid-level programming language?
How can I sort a linked list?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
Is it possible to initialize a variable at the time it was declared?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
Why is extern used in c?
. Explain the differences between fork() and exec() in C
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Difference between strcpy() and memcpy() function?