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 structure of c program?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
c program for searching a student details among 10 student details
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
how to capitalise first letter of each word in a given string?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
explain what is a newline escape sequence?
How can I convert integers to binary or hexadecimal?
write a program in c to print **** * * * * ****
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above