Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~2K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for Adnan S.

[code=c] int sumDigit(int number) { return number < 10 ? number : number%10 + sumDigit(number/10); } [/code] This code can solve your problem..

Member Avatar for sneekula
0
988
Member Avatar for hoticejin21

I think that you should learn C keyword and conditional statement. Then you can think out the pseudocode then I pass to code. you show the menu on the screen as an interface, for example: Hello please enter the ID? Kevin welcome Kevin. Please enter your password? ****** ---MENU--- [W]ithdraw …

Member Avatar for Adak
0
180
Member Avatar for nnhamane

You can use game libary, just like Allegro, gtk+. Functions that belong these libary can load image and sound...

Member Avatar for dwks
0
277
Member Avatar for trowa0830

[code=syntax] int main() { int i,limit; printf("Enter the Limit: "); scanf("%d", &limit); printf("%10s%10s%10s", "Number","Square","Cube"); for( i = 0; i < limit; ++i ){ printf("%10d%10d%10d\n", i, i*i, i*i*i); } return 0; } [/code] you can write like that if you want to be formatted for your output, you should glance C …

Member Avatar for Aia
0
298
Member Avatar for Anbuvengeance

I read your code. It has been very confusing. Firstly your code should be structured, so, all your functions should take parameters. If you want to use on the global scope, it would be hard. Secondly, you have to write one function for one target, For example , you can …

Member Avatar for Anbuvengeance
0
102

The End.