Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~586 People Reached
Favorite Tags
Member Avatar for whotookmyname

I need to do the following in a .csv file using a c++ code 1. open the file 2. read the first line...extract the number part of it 3. enter the user entered data at the end of the file (append) 4. now add the extracted integer and a certain …

Member Avatar for rdrast
0
93
Member Avatar for whotookmyname

[code] string s; cout<< "Enter name: "; cin >> s; cout<<"\n"<<s; [/code] on running this i need: Enter name: Tejesh Kinariwala Tejesh Kinariwala it is showing: Enter name: Tejesh Kinariwala Tejesh so how to get the input till user hits return key, instead of breaking it at space

Member Avatar for whotookmyname
0
76
Member Avatar for whotookmyname

I have to open a file whose name i am constructing by concatenating various inputs from the user. If I write: [code] string s = "filename.csv"; ofstream fout; fout.open(s,ios::app); [/code] it gives error for using s in fout.open(). It says it is a wrong form. I need to use a …

Member Avatar for sureronald
0
86
Member Avatar for whotookmyname

I need to input data into Excel sheet using a pop up window. Someone suggested I should use Macros. Can someone help me with it. I don't know where to start

0
35
Member Avatar for whotookmyname

I have to open a file named "axb.txt" I have user input a and b as strings i have concatenated the string using string str = a + "x" + b+ ".txt" now i need to open the file. it does not open with fopen(str, ios::app) because str is not …

Member Avatar for whotookmyname
0
296