Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
50% Quality Score
Upvotes Received
4
Posts with Upvotes
2
Upvoting Members
4
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
5 Commented Posts
0 Endorsements
Ranked #4K
~8K People Reached
Favorite Tags
Member Avatar for Alice_Blue

Hi all! I'm at work - newly hired:) - and I'm given this mpeg2 video codec [URL="http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html"]http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html[/URL] and in particular the decoder that exists in the folder mpeg2v12.zip. It is code c written for gcc, so I decided to download MinGW and DevC/C++. I add all the files to the …

Member Avatar for Laszlo_1
0
1K
Member Avatar for IwalkAlone

Q.Write a function to concatenate to input strings into one large string and display the result. I know how to do this using strcat but not without it. Also can't use pointers. Please help!!

Member Avatar for ahmedhamdy
0
2K
Member Avatar for beenu thakur

i have an intel based mother board 945 gccr (essential series) & i want to purchase a graphic card ................... (nvdia gforce8600gts and 8600gt,8500gt,8400gs) i think these cards are best....... (but these cards supports sli technology and i heard that in (sli technology) needs two slotes of pcie 16 x …

Member Avatar for Ali.Ayam
0
172
Member Avatar for bolx

Hi, im new to c++ and wondered if anyone could help me with this Use a for loop to display 3 times table backwards 12 times 3 = 36 11 times 3 = 33 10 times 3 = 30 9 times 3 = 27 8 times 3 = 24 7 …

Member Avatar for Kev06N
0
142
Member Avatar for vs49688

EDIT: I mucked up the thread title. It should be "Convert Custom type 'String' to std::string" Hi, How would I be able to convert a custom type 'String' to a std::string? Just that the function I'm using requires a std::string. troublesome code: [code] SetVar::operator char* () { if (szName == …

Member Avatar for ArkM
0
279
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
192
Member Avatar for fadia

heey guys.. i just learned the arrays.. am not really good at them.. can some one simplify it for me.. i gat this question.. i tried to solve it.. but didn't get the desired output :S how ever it says 1 succeeded ! here's the Q: 1. Declare one array …

Member Avatar for mirfan00
0
284
Member Avatar for fadia

Hello.. i'm working on my project.. it's the first time i do a C++ project.. but i'm getting this fatal error.. if any one knows how to solve it plz tell me.. also if anyone have any idea or advice to improve the program plz go ahead. [CODE] #include <iostream> …

Member Avatar for mvmalderen
0
194
Member Avatar for Ameerah

Hi for ever can any one help me [COLOR="Red"]only give me idea[/COLOR] of this question Write a program that reads from a file list of unsorted names and sort the names automatically and then asks the user whether he/she would like to print the names in the output screen or …

Member Avatar for ArkM
0
196
Member Avatar for Carrots

Hi, Hoping someone can tel me where I'm going wrong, or what I should do. I'm trying to use some pure virtual functions on some polymorphic classess but am unsure how to do it correctly. Hiopefully this code will explain it a bit better: vehicle.h : [code=C++] using namespace std; …

Member Avatar for Carrots
0
186
Member Avatar for ProgrammersTalk
Member Avatar for Ezzaral
0
591
Member Avatar for abby2589

how to use push and pop here??? thanks! #include<stdio.h> #include<stdlib.h> void push(char palindrome[20], int *top, int value) { if(*top<=10) { palindrome[*top]=value; *top++; } else { printf("Stack is full!!"); exit(0); } } int value; void pop(char palindrome[10], int *top) { if(*top>=0) { value=palindrome[*top]; *top=*top-1; } else { printf("The stack is empty!!\n"); …

Member Avatar for Ahmed_I
0
118
Member Avatar for JONZ
Member Avatar for death_oclock
0
214
Member Avatar for abby2589

how can i declare this correctly: because i always get an error like, too long declaration. Type of food Name Address Average cost Thai ABC Makati 250 American DEF Pasay 350 Asian GHI Manila 150 Thai JKL Muntinlupa 300 Thai MNO Paranaque 350 American PQR Manila 200 Asian STU Makati …

Member Avatar for Ahmed_I
0
106
Member Avatar for bfreelancer

[B]Obama Against Outsourcing ??[/B] During his campaign, Obama said he would offer incentives to companies that created jobs at home and halt tax breaks to those that ship work abroad. what do you think ? Rolling Eyes

Member Avatar for yollyP.
0
112
Member Avatar for web_master

hey, I am developing this game of snake, just like the nokia phones have. anyway i have worked on windows till now, but now i am using geany on linux. so there are quite some methods which are not standardised for all platforms. one of them is gotoxy() and i …

Member Avatar for web_master
0
98
Member Avatar for somnathsarode

Hey i have created binary search prograram this progaram search all locations but not first if i give value of other than zero location it gives results but not for zero location please guid me the code is as follows [code]// Program for Binary search #include<stdio.h> #include<conio.h> int a[50]; void …

Member Avatar for ddanbe
0
148
Member Avatar for A Monkeys Uncle

I do :cheesy:. I currently own the Dreamcast, PSX, N 64, and Xbox plus tons of emulation and roms, and I play PC games as well but I need to upgrade my pc which I am doing this year. I'd like a GC and a PS 2 as well but …

Member Avatar for GrimJack
0
959
Member Avatar for DJPlayer

I just need a direction to go with this.. a simple program that assists with unix and/or windows GUI creation. I have fairly simple program using classes, virtual functions and inheritance. The functions are all implemented by a switch w/ 6 options that call one of the functions. Now what …

Member Avatar for Ahmed_I
0
110
Member Avatar for kyosuke0

the program i have to write involves a dynamically linked stack to evaluate if the grouping symbols '[B]([/B]' , '[B])[/B]' , '[B]{[/B]' , '[B]}[/B]' , '[B][[/B]' , '[B]][/B]' in expressions are balanced. The expression is input through keyboard. For example: expression: {A+(B-C)*D} is balanced expression: T+{(R+M)/G-V*L is not balanced expression: …

Member Avatar for kyosuke0
0
198
Member Avatar for Ahmed_I

Generic Double Linked List [CODE="C++"]/* These are generic Functions for a Generic List * Note:-Only Functions not including a Menu and an Interface * You could use these Functions for your own Benefit*/ #include <iostream> using namespace std; template <class X> struct node{ //Template Structure X data; node* next; node* …

Member Avatar for ArkM
0
185
Member Avatar for Ahmed_I

Guys anybody faced this problem in Ubuntu 8.10 where when the cable is plugged in the PC it doesn't read any connection automatically like its predecessors. If anybody faced this problem plz can he provide me with the solution ? Note:-I've tried sort of things and noticed that in the …

Member Avatar for Ahmed_I
0
195