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 |
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
Which is better malloc or calloc?
What is an array in c?
What's the best way to declare and define global variables?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What are the 4 types of programming language?
How will you write a code for accessing the length of an array without assigning it to another variable?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Program to find larger of the two numbers without using if-else,while,for,switch
What is the purpose of the fflush() function in C?
What is Dynamic Initialization.