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 |
Write a program in C to reverse a number by recursive function?
How pointer is different from array?
what is the difference between c and c++?
What is register variable in c language?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What's the right way to use errno?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
what is c++ programming?
What is abstract data structure in c?
Which programming language is best for getting job 2020?
What does double pointer mean in c?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }