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 #55.0K
~163 People Reached
About Me
the second born in a family of five, currently in my second year in a state university studying computer engineering
- Interests
- interested in programming, internet for research,and basketball
- PC Specs
- just good at programming and other computer skills such as editing and designing
Favorite Forums
Say Hello! x 2
Favorite Tags
c x 1
2 Posted Topics
hello, am new in this forum, and currently am in my second year as a computer engineering student in my state university here in Cameroon | |
please guys look at the code below #include <stdio.h> int main(void) { enum days {monday=1, tuesday, wednesday, thursday, friday, saturday, sunday}; enum days today=monday, tomorow=today+1; printf("\n today is the %d day of the week\n", today); printf("tomorow is the %d day of the week\n", tomorow); printf("\n today is %s and tomorow … |
The End.