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
~207 People Reached
Favorite Forums
Favorite Tags
c x 4
Member Avatar for buzzlightyear79

i need help to solve this #include <stdio.h> #include <stdlib.h> void toLowerCase(); int main() { system("cls"); toLowerCase(); return 0; } void toLowerCase() { char ch, ch1; printf("\nEnter a character to convert: \n "); scanf("%c", &ch); ch1 = ch+32; printf("Converted value is %c", ch1); fflush(stdout); }

Member Avatar for N1GHTS
0
91
Member Avatar for buzzlightyear79

this program is challenging any ideas program should read the commands in sequential order, process them, perform the necessary calculations, and then print out the results in a neat, readable manner, both to a file and to the screen. Details The first line of the file contains two characters giving …

0
64
Member Avatar for buzzlightyear79

this program is very chalenging and i was wondering if you could provide some ideas as how to solve it. You are required to simulate the trajectory of a 60-ft long test rocket. Engineers predict that under the current wind conditions, the height of the rocket at time t is …

0
52