How to post code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How to post code?

how we can post code on sololearn platform?

1st Aug 2017, 12:36 PM
kondiparthi.sai bhargavi
kondiparthi.sai bhargavi - avatar
12 Answers
+ 11
just 3 simple steps: 1.make your code 2.save it and 3.make it public
1st Aug 2017, 12:41 PM
P R
P R - avatar
+ 5
+ INSERT...
1st Aug 2017, 1:29 PM
Manual
Manual - avatar
+ 4
on the computer copy and paste the address into your comment
1st Aug 2017, 1:23 PM
Manual
Manual - avatar
+ 4
l l l V
1st Aug 2017, 1:29 PM
Manual
Manual - avatar
+ 3
On the app press insert on a new comment there l l V
1st Aug 2017, 1:24 PM
Manual
Manual - avatar
+ 2
are you on mobile or on pc?
1st Aug 2017, 1:13 PM
esenia
esenia - avatar
+ 2
@vinny I'm on mobile
1st Aug 2017, 1:26 PM
kondiparthi.sai bhargavi
kondiparthi.sai bhargavi - avatar
+ 2
alright. on android like @Manual said there's an insert button. from there you would go to my codes and put the code you wish there. otherwise another way is just to copy the address
1st Aug 2017, 1:30 PM
esenia
esenia - avatar
+ 1
@PR PLZZ give me an example
1st Aug 2017, 12:50 PM
kondiparthi.sai bhargavi
kondiparthi.sai bhargavi - avatar
+ 1
@vinny I couldn't understand
1st Aug 2017, 1:26 PM
kondiparthi.sai bhargavi
kondiparthi.sai bhargavi - avatar
0
<?php $host ="localhost"; $dbUsername ="root"; $dbPassword =""; $dbname ="nairobits"; //create connection $conn = new mysqli($host, $dbUsername, $dbPassword, $dbname); //check connection if ($conn->connect_error) { die( "connection failed: " .$conn->connect_error); } echo "connect successfully"; echo "<br>"; if (isset($_POST['VALUES'])) { $name=$_POST['name']; $location=$_POST['location']; $email=$_POST['email']; $password=$_POST['password']; $sql="INSERT INTO cbo(name,location,email,password); VALUES('$name','$location','email',$email',$password)"; } echo "New record created successfully"; mysqli_close($conn); ?> why cannt it post
9th Aug 2018, 9:29 AM
Effi Zipporah
Effi Zipporah - avatar
0
#include <iostream> using namespace std; /*Program to calculate maximum ,minimum and average using functions*/ void calculate_minimum_maximum_average(int [],int,int &p,int &q,double &r); int main() { int a[50],n,p,q; double r; cout<<"Enter number of elements:"; cin>>n; cout<<"Enter the elements of array:"; for(int i=0;i<n;i++) cin>>a[i]; calculate_minimum_maximum_average(a,n,p,q,r); cout<<"Minimum="<<p<<endl; cout<<"Maximum="<<q<<endl; cout<<"Average="<<r<<endl; } void calculate_minimum_maximum_average (int b[],int size,int &min,int &max,double &avg) { int min=b[0]; for(int i=0;i<size;i++) { if(b[i]<min) {min=b[i];} } int max=b[0]; for(int i=0;i<size;i++) { if(b[i]>max) {max=b[i];} } double sum=0; double avg; for(int i=0;i<size;i++) {sum=sum+b[i];} avg=sum/size; } What is wrong with this code? I am getting errors
18th Jan 2019, 1:48 PM
Sabrina Yasmin