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
~691 People Reached
Favorite Tags
c x 4
c++ x 2
Member Avatar for AlSal

I am having problems getting my procedure to read characters recursively to terminate. Can somebody help me here, I am not suppose to use arrays or lists. I have the following procedure: [code=language] void recursive() { char c; cin>>c; cout<<c; recursive(); return; } [/code] I also need to print the …

Member Avatar for AlSal
0
76
Member Avatar for AlSal

I am just breaking my head and trying to figure out how double pointers are represented in box and circle diagrams and how they might change by changing the values. Can anyone help?

Member Avatar for siddhant3s
0
69
Member Avatar for AlSal

I have the following C++ code: [code=syntax] void f(int* x) {...} void f(char* x) {...} int main() { ... f(0); ... } [/code] I understand that this has a problem interpreting which function to call. I also think I can get rid of this problem by giving it two different …

Member Avatar for Narue
0
97
Member Avatar for AlSal

Hey, this is Allan. I have just returned to finish my major after 4 years of doing something that does not involve any books. Now that I'm trying to program again I find myself in a thigh spot because I don't remember everything. But I have heard great things of …

Member Avatar for LabASSistant
0
38
Member Avatar for AlSal

I've been trying to find a complete list of the c/c++ libraries and all of their functions, but everywhere I look, I only find a part, never the whole thing. Is there a website where I can find such detailed list?

Member Avatar for BeyondTheEye
0
90
Member Avatar for AlSal

Hi, I am really knew with linux, well, I am using Fedora9. Just wanted to know if I can connect the Fedora that I have on my laptop to the linux server from school, so that when I open my terminal I can choose if I want my profile connected …

Member Avatar for AlSal
0
154
Member Avatar for AlSal

I'm trying to send an char array through a function convert it to an int array and send it back so I can reuse it with another function. I'm just having the worst time with this matter, please help!

Member Avatar for ssharish2005
0
77
Member Avatar for AlSal

I'm having problems with my do/while loop. It does not take the condition and simply continues the loop indefinitely. I have: [code=c] do { printf("Choose the base of the number to convert:\n\n"); printf("2 5 8 10 16\n\n"); printf("Enter option:"); scanf("%d", &baseFrom); system("cls"); if(baseFrom != 2 || baseFrom !=5 || baseFrom …

Member Avatar for Salem
0
90