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
~4K People Reached
Favorite Tags
Member Avatar for MyRedz

hi i am doing crc coding for c and cant get the remainder and dataword +remainder= codeword any help here [CODE] #include <stdio.h> #include<stdlib.h> #include <conio.h> int main() { int a[20],b[20],c[20],i,k,j,n,s=0,t=0; printf ( "Welcome to the CRC Encoder/Decoder!\n"); printf ( "press n to exit at anytimes\n"); /* do{*/ printf("enter size …

Member Avatar for sixstringartist
0
104
Member Avatar for Niki_Fears

[ATTACH=right]15792[/ATTACH]Google has been attempting to break out of their search engine based box for quite some time by presenting challenges to some of the IT world's biggest names such as Microsoft and Apple. Now with the new App Inventor that Google has launched for Android it is giving developers more …

Member Avatar for Dcurvez
2
408
Member Avatar for PCBrown

[B]Flash Support on the iPad Becomes Reality[/B] Comex, the programmer behind the user-friendly jailbreak tool, Spirit, has unleashed the source for his latest project, [URL="http://github.com/comex/frash"]Frash[/URL]. This little gem enables Flash support (sans video) on the iPad. Frash is still in the alpha stage, so if you run into problems, you …

Member Avatar for MyRedz
3
514
Member Avatar for MyRedz

i was wondering. of all the data structures like list linked list,stack,queues,graph of bfs and dfs. hashing,sorting,searching,arrays...heaps, can anyone of them be solved using computational methods and statistic like linear regression,quadratic regression,trapezoidal rule,simpson's rule..which is to improve accuracy of integral.. just wondering is it possible??

Member Avatar for tetron
0
194
Member Avatar for MyRedz

help i need to search and delete a node from a link list but i am not sure of the algorithm can someone please help me with the algorithm and concept need example thanks..

Member Avatar for lotrsimp12345
0
107
Member Avatar for MyRedz

hello guys...i just done my assignment and here's the code [code] #include <iostream> using namespace std; class CelestialBody { private: double size; public: CelestialBody (double ); ; class Planet : public CelestialBody { private: double orbit_time; public: Planet(double , double); }; Class Earth : public Planet { private: unsigned long …

Member Avatar for JugglerDrummer
0
149
Member Avatar for MyRedz

well here i am just starting to do some coding about handphone to smartphone object..it's an inheritance project but not mine..;) so i would like to share here about the errors and others. any help is appreciated... now my uml diagram i want to transfer to handwritten coding.so.. [QUOTE] Handphone …

Member Avatar for foze_skate
0
128
Member Avatar for edb500

Hi there I have the following problem! Please help! [code=cplusplus]class Base { //private methods void printMyType() { cout << "this is base type" << endl; } //public methods void printAllInfo() { cout << "this An accout" << endl; printMyType(); } }; //end base class class derived : public Base { …

Member Avatar for edb500
0
83
Member Avatar for MyRedz

help.why can't my coding loop properly.,..i notice it can't show the loop of ptrpers[j] ? what did i do wrong.? it didn't show back the input i put on earlier. [CODE] #include<iostream> using namespace std; class person { protected: char name[40]; public: void setname() { cout<<"Enter Name:"; cin>>name; } void …

Member Avatar for MyRedz
0
129
Member Avatar for denyildani

Hi all, I want to input joystick to my code,which is very simple smile.gif.I searched the net but find out that people use DirectInput , etc... but i want a very simple application, for example like when you pull right, a variable in the code changes from 0 to 10,whne …

Member Avatar for MyRedz
0
1K
Member Avatar for MyRedz

hello i am unstuck at this question because i dont know how to call it..and random animation is something confusing here here's my question > Make a function `void ScreenSaver(Screen& Shape* shps[])` in which you take an array of shape pointers and their masks, and randomly animate all these shapes. …

0
61
Member Avatar for MyRedz

here's my question > Make a function `void ScreenSaver(Screen& Shape* shps[])` in which you take an array of shape pointers and their masks, and randomly animate all these shapes. You are required to pass only the shapes you made before and animate them, you need not worry about shapes colliding …

0
83
Member Avatar for MyRedz

here's my question here Construct a class named Coord that contain two floating –point data member named xval and yval , which will be used to store the x and y values of a point in rectangular coordinates. The function member should include appropriate constructor and display functions and friend …

Member Avatar for siddhant3s
0
132
Member Avatar for MyRedz

hi i got my second assigment here for oop in c++. but i don't understand clearly. can anyone explain it to me? [QUOTE] ASSIGNMENT 2 INTRODUCTION TO CLASS [15 marks] Objective: 1.Learn how to write class which uses dynamic memory allocation 2. Learn how to invoke member function/send message to …

Member Avatar for VernonDozier
0
94
Member Avatar for MyRedz

all i can think i will type here and please explain the others.thank you this is just to enhance my knowledge about oop.The info i got now isn't enough... q1 Write a simple program to ask user to input five digits number. Using the input, output the five digits number …

Member Avatar for arun_lisieux
0
138
Member Avatar for rottmanj

I have setup a class that stores the data for my database connections. Inside the class I have several members that either set or get the variables. Inside my main I have set the value of the hostname. Now I have a second class that I am testing with called …

Member Avatar for StuXYZ
0
97
Member Avatar for MyRedz

hi i just done my program and the input have some digits gone from it.i don't know how to recorrect it so i will like to seek advice here please [CODE] #include <iostream> #include <cmath> using namespace std; void convert(int , int, int, int*); //convert(number, base, length, result) int len=0, …

Member Avatar for MyRedz
0
118
Member Avatar for FrancisC07

hi guys! i need help ! what's wrong of this code?? this program will input five names and will output the five names i inputed. but when i run this program and i inputed a five names. It couldn't give me the exact answer.. the output should be this: please …

Member Avatar for MyRedz
0
96
Member Avatar for MyRedz

how can this be done? do i have to pointer the database in the structure first to make it able to be use from a text file for some C program ..example.. a measurement converter??

Member Avatar for MyRedz
0
128
Member Avatar for MyRedz

about this program which wants only 0 and 1 integers in its input...if other digits it will say error/// how to determine it?? i don't know is it printf("enter a value\n"); scanf("%d",&value); if(value2=0; value%2=1,value++){ printf("error\n"); } else continue. how to do it..? i dont get the idea for geting only …

Member Avatar for Aia
0
102
Member Avatar for MyRedz

if i want to search a target which is the same as my input in a array that is 2D.. what methods is more efficient?? binary search or linear search.. which is highly recommended? help me because i have to use it?

Member Avatar for Sci@phy
0
131