How to Save a Code ?
There is no save button to save the code in my profile that i found so plzzz help me
7 Answers
3 years ago by Abhay Bisht
@Abhay Bisht All the codes you run are automatically stored towards your profile.
So simply click on Run button to save the code.
3 years ago by OneCompiler
- Go to the top of the compiler, where it has a string of characters, followed by a pencil icon
- Click the pencil icon
- Rename the project to whatever you want (Optional, Default is the string of characters form before)
- Give it a description (Optional)
- Make it public or private (Default is public)
- Click "Save"
3 years ago by Jacob Morrison
#include <stdio.h>
main () {
int sum = 0;
for(int i = 25; i <= 173; i++) {
sum = sum + 5 * i + 2;
}
printf("The result of the summation is: %d", sum);
}
1 month ago by Erin Charlize Llanto