0
How can I improve my language because I not good at language c++
9 ответов
+ 4
what exactly you are not good at in c++? specify please?
+ 4
the code looks legit. 2 functions that print a text. one calls another. I see no problem here. It's all good :) you are doing well. what is confusing in this code?
+ 2
keep trying. don't think its hard. believe in yourself and keep trying ;)
+ 2
Well, give a code example that is confusing to you
+ 1
you can try solve problems. use google to search them.
+ 1
practice, practice and practice
0
Ohhkk, thank uhh.....
0
I'm not good at functions n memory allocation in language
0
#include<iostream>
Using namespace std;
Void myfun1()
{
Cout <<"\n my function 1";
}
Void myfun 2()
{
Cout<<"\n myfun 2";
myfun1() ;
}
Int main()
{
myfun2() ;
return 0;
}