Try these.......
1. Check validity of a date.
2. Print a number in words.
eg. 123 as "one hundred twenty three"
3.Calculate time elapsed between two given time.
eg. time1=01:30pm time2=04:50am
elapsed time= 15 hrs 20 min.
4. Create a menu driven program using "switch case" to do the following:
(a) calculate area of square, circle, triangle or rectangle.
(b) perform airthmetic operation on basis of input operator
eg. if input is '+' then perform addition
5. Printing following patterns:
(a).
*
**
***
****
*****
(b).
1
12
123
1234
12345
(c).
a
ab
abc
abcd
abcde
6. Claculate frequency of all digits from 0-9 in a number.
7. Reverse a number, sum of its digits.
8. chech whether a number is
a. Pallindrome eg. 12321
b. Armstrong eg. (1) ^3 + (5) ^3 + (3) ^3=153
9. Fing sequences that sum up to a number.
eg. number =15
1+2+3+4+5=5
4+5+6=15
7+8=15
Good Luck!
2007-03-30 02:19:48
·
answer #1
·
answered by cool_chunks 3
·
0⤊
0⤋
try FLAMES. Hope you know the rules. This will be a little complicated.
You can write a program to view a bmp file on C graphics mode.
These are the projects i thought of completing this
holidays. But i was not able to program the second one.
I want some friend who like C and has similar mentality. Want to share some codes contact me at m_gopi_m@yahoo.co.in
2007-03-28 02:49:14
·
answer #2
·
answered by Gopinath M 3
·
0⤊
0⤋
I cant understand ur Q bro but still for a minor project you can go for a calculator with fll functionality and error trouble shotting
and for a big project go for bank management.
For further queries u can mail me.
2007-03-27 20:48:52
·
answer #3
·
answered by Siddharth Maheshwari 2
·
0⤊
0⤋
Henk V is powerful with reference to the undertaking interior the textbook being incorrect. this would not bode nicely. The consistent component is volts/turn and stands out as the comparable for all turns with reference to the shared transformer center. The voltage relationship is: one million. V? ? N? = V? ? N?, volts in keeping with turn equals volts in keeping with turn 2. or, V? ? V? = N? ? N? that fits the undertaking. yet additionally ability in is ability out. So: 3. V? ? I? = V? ? I?, ability in equals ability out 4. or, V? ? V? = I? ? I? Drawing from (2) above, and mixing it with (4), you get: 5. I? ? I? = N? ? N? it extremely is different from what the e book situation states. be conscious, to place in writing splendid code you additionally should be attentive to 3 electronics and be able to dispute what you examine in a textbook on programming. the undertaking interior the e book additionally isn't clean with reference to the values of N? and N?. they might in ordinary terms be approved to be integers (no longer uncommonly the case in authentic transformers.) yet transformers are additionally wound with 'fractional' windings, as nicely -- extremely in cases the place the winding count variety is closer to 0. considering that i won't be able to tell, i will presume the form of double. yet you may exchange it as you notice in high-quality condition. right this is a great number of what you're searching for. It would not do set_n2_for_i2() or another opportunities i'm able to think of of, given the undertaking wording. It additionally would not do the scanning and printing. i will assist you artwork those out. it rather is often to set you immediately approximately coming up the equations. typedef double winding_t; typedef double voltage_t; typedef double current_t; typedef struct transformer_s { winding_t n1, n2; voltage_t v1; current_t i1; } transformer_t; voltage_t v_out( const transformer_t * t ) { return (voltage_t) ((t->v1 * (double) t->n2) / (double) t->n1); } current_t i_out( const transformer_t * t ) { return (current_t) ((t->i1 * (double) t->n1) / (double) t->n2); } void set_n1_for_v2( transformer_t * t, voltage_t v2 ) { t->n1= (winding_t) ((t->n2 * (double) t->v1) / (double) t->v2); } void set_n2_for_v2( transformer_t * t, voltage_t v2 ) { t->n2= (winding_t) ((t->n1 * (double) t->v2) / (double) t->v1); } void set_v1_for_v2( transformer_t * t, voltage_t v2 ) { t->v1= (voltage_t) ((t->n1 * (double) t->v2) / (double) t->v1); }
2017-01-05 07:50:00
·
answer #4
·
answered by Anonymous
·
0⤊
0⤋
you can solve why I am fat. lol :-D
seriously, try to think of something that would be useful to you, maybe something you can use to organize your friends and stuff. if you are an expert coder then when can you teach me master :-P
2007-03-27 22:12:10
·
answer #5
·
answered by Johann J 1
·
0⤊
0⤋
www.codeproject.com/
go to this link. you will find enough problem hanging there
2007-03-27 20:49:17
·
answer #6
·
answered by TheHacker 4
·
0⤊
0⤋
http://kulals.blogspot.com/
2007-03-30 03:10:56
·
answer #7
·
answered by sathish.kulal 2
·
0⤊
0⤋
http://en.wikibooks.org/wiki/C++_Exercises_for_beginners/Variables_and_types
http://www.fz-juelich.de/video/cpp/html/exercises.html
http://www.samspublishing.com/articles/article.asp?p=27834&seqNum=10&rl=1
2007-03-27 20:54:05
·
answer #8
·
answered by Anonymous
·
0⤊
0⤋