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.

~479 People Reached
Favorite Forums
Favorite Tags
c x 6
Member Avatar for sasha12

can somone tell me why my output does not want to reverse and the solution to it #include <stdio.h> #include <string.h> #define QUIT_LETTER 'q' // Again, in a practical program, this is a ridiculously small size // for an array that is supposed to hold a line of text. But …

Member Avatar for tinstaafl
0
49
Member Avatar for sasha12

can someone explain to me this code and what the output should look like?, is there going to be two strings? and what does dest[I]=to src[] mean, is string bar going to have the string abcd or efghijk. #include <stdio.h> void copy_str(char *dest, const char *src); int main(void) { char …

Member Avatar for Schol-R-LEA
0
49
Member Avatar for sasha12

i been trying trying to convert a number of seconds into days, hours, min and seconds. but i keep getting errors, "expected identifier or '('" . how should i fix it.` #include <stdio.h> #include <stdlib.h> void to_dhms(int total_s, int *d, int *h, int *min, int *s); int main(void) { int …

Member Avatar for rproffitt
0
49
Member Avatar for sasha12

>hello i want to print convert seconds into days, hours, munite, and seconds but i do not know how to call void into line 28 so it can print. #include <stdio.h> #include <stdlib.h> void to_dhms(int total_s, int *d, int *h, int *min, int *s); int main(void) { int seconds_in, days, …

Member Avatar for rproffitt
0
40
Member Avatar for sasha12

i am trying to Convert a number of seconds into days, hours, minutes, and seconds. using pointers but something seems wrong . can somone tell me what is the problem and how to solve it. it keeps telling me error: function definition is not allowed here #include <stdio.h> #include <stdlib.h> …

Member Avatar for rproffitt
0
267
Member Avatar for sasha12

i am trying to Convert a number of seconds into days, hours, minutes, and seconds. using pointers but something seems wrong . can somone tell me what is the problem and how to solve it ![Screen_Shot_2021-10-06_at_4_26_53_PM.png](https://static.daniweb.com/attachments/4/d5bbe5177858b2a75df377653b18347b.png)

Member Avatar for rproffitt
0
25