Answer Posted / 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 |
Post New Answer View All Answers
What is the best way to store flag values in a program?
Explain what are multibyte characters?
What is queue in c?
What is the size of empty structure in c?
Explain Basic concepts of C language?
What is the basic structure of c?
When should you not use a type cast?
What is the use of getchar functions?
What does it mean when a pointer is used in an if statement?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is the use of header files?
If fflush wont work, what can I use to flush input?
Is c call by value?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.