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
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 33
Member Avatar for margeaux54

after finishing books of thinking in c++ vol1 and voL2 , ı decided to read c++ programming language 3rd edition by stroustrup. Do you think that it is appropriate?

Member Avatar for rubberman
0
128
Member Avatar for rbduck09

To anybody that may know and can help me. I am not looking for an answer to anything I just need to know to write this equation in C++

Member Avatar for rbduck09
0
239
Member Avatar for margeaux54

ı have a question. I know which data type and its specifiers . but ı do not know that for example "int" data type how many number takes or long integer how many number takes. ı calculated their bytes but still ı do not know when ı choose them. again …

Member Avatar for Fbody
0
167
Member Avatar for margeaux54

hello. I am struggling until 4 weeks. you know ancientDragon. whatever . ı do no go forward anymore. I need names of books that can help me. I have a information but it is not enough. ı want to understand questions on these websites. I have only little array, pointer, …

Member Avatar for jackmaverick1
0
94
Member Avatar for errorlog2

Hello Programers, web designers, reverse engineers, coders, game coders [COLOR="Red"]other...[/COLOR] What Language Do i First learn to master all? i have a small knowledge in VB6 and vb.net but what do i need to learn first to master all language im dedicated to study hard and master the languages and …

Member Avatar for ntrncx
0
187
Member Avatar for margeaux54

Hello. I have a two [B][COLOR="Red"]structure[/COLOR][/B] arrays that are sorted. ı wanted to put these arrays into third array as a sorted. and then ı wanted to put these values into the file. into my array one and array two , there is no same number so ı thought something …

Member Avatar for margeaux54
0
243
Member Avatar for margeaux54

array1 and array2 is my ascended ordered arrays ı want to put this arrays into the array3 and then ı want to write ouput.txt you can understand better my codes. [CODE] for( int i=0; i<21 ;++i) { if (array1[d].ave> array2[e].ave) array3[i].ave=array2[e].ave; e = e+1; if(array2[e].ave>array1[1].ave) { array3[i].ave = array1[d].ave; d=d+1; …

Member Avatar for Ancient Dragon
0
217
Member Avatar for margeaux54

I have a problem that ı could not understand. [CODE]#include <cstdlib> #include <iostream> #include <stdio.h> using namespace std; struct record { char name [20]; double ave; }; int main(void) { int x,y; struct record array1[3]; struct record array2[3]; FILE *a; a=fopen("in.txt","r"); for (int i=0;i<3;i++) { fscanf(a," %d",&y); array1[i].ave=(x+y)/2.0; cout << …

Member Avatar for caut_baia
0
79
Member Avatar for margeaux54

ı have problem with this program because ı want cin>> number; int count[number]={0}; ... .. .. for ( ............ ) count[b]=count[b] +1; ı could not such a segment in my program. my aim is that for each entered number , ı will count something ı want to learn this. devc++ …

Member Avatar for margeaux54
0
99
Member Avatar for margeaux54

Finally , ı finished my simple program. I will learn very very much thing from you And ı will ask many many questions after this time:) So I will wait your suggestions about my program [ICODE] #include <iostream> using namespace std; void encyrpt(void); // Encyrpt function prototype void decyrpt(void); // …

Member Avatar for margeaux54
0
160
Member Avatar for margeaux54

There is little mistakes in this program. I couldnot understand. may be you can see. For example ı can not solve exit problem in menu function [CODE] #include <iostream> using namespace std; void encyrpt(void); void decyrpt(void); void menu (void) // this function provide to be reached to menu { char …

Member Avatar for Ancient Dragon
0
119
Member Avatar for margeaux54

This is my encyription and decyrption program. However there some mistakes that ı could not solve them. And ı set everything but when ı press q, my program should quit, ı tried some things but it is not appropriate for c++ rules. #include <iostream> using namespace std; void encyrpt(void); void …

Member Avatar for margeaux54
0
184
Member Avatar for margeaux54

ı could not solve non lvalue assignment problem in this example I thought for long time but ı could not find any answer if you can help me , ı would be very happy include <iostream> using namespace std; void encyrpt(void); void decyrpt(void); void menu(void) { char a; cout<<"(E/e) Encryption"<<endl; …

Member Avatar for margeaux54
0
146