Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
2 Commented Posts
0 Endorsements
Ranked #25.0K
~660 People Reached
Favorite Forums
Favorite Tags
c++ x 8
Member Avatar for phoenix911

the question reads as follows.... show how u can efficiently multiply an integer that is read from the keyboard by 100, without using the operator *. use the << operator several times.... ok i can do this using overload.... or thats the only way i can think of... or is …

Member Avatar for jephthah
0
194
Member Avatar for atman

Hello., I'm very new in C++, and I have a task to solve. I have a function: [CODE] void cio_display(const char *str, int row, int col, int len){ int i; cio_move(row, col); if(len<=0) { cio_putstr(str); } else{ for(i=0;i<len && str[i];i++) cio_putch(str[i]); for(;i<len;i++) cio_putch(' '); } [/CODE] here iss what i …

Member Avatar for ArkM
0
221
Member Avatar for rukunaditya

Is it possible to print anything on screen in C or C++ without using main().If yes please explain how?

Member Avatar for Narue
0
166
Member Avatar for selaog

how do i output solution in array form into a file where it can then be copied.

Member Avatar for jloundy
0
79