Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
7% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
20
Posts with Downvotes
11
Downvoting Members
9
5 Commented Posts
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 20
Member Avatar for hurricane123

is there any difficulties of sorting parallel arrays?if there then what are those

Member Avatar for VernonDozier
-3
218
Member Avatar for hurricane123

I need clues for making a programe suppose there is sample data set in file sp13Input.txt. A 555-1234 B 555-1111 C 555-2222 D 555-3333 E 555-4444 F 555-5555 G 555-4321 z 000-0000 we have to make linear search,by giving the number and it will display the name of the person …

Member Avatar for hurricane123
0
91
Member Avatar for hurricane123

1What are the advantages of using a constant for the array size? 2In addition to the array itself, why should you pass the array size to a function? 3.How are pointers and array names related?

Member Avatar for Ancient Dragon
0
70
Member Avatar for hurricane123

I wanna know how 2 return string by using function for example if we want to check the lenght of string we use cout<<strlen("c") but how to use this by fuction

Member Avatar for webs1987
0
117
Member Avatar for hurricane123

i tried to make a program to compare two string and display which character will come first as you can see below but it gives certain error can any one guide me what changes i have to make [CODE]int Mystrcmp (const char* , const char* ); { cout<<Mystrcmp(v1,v2); } int …

Member Avatar for WaltP
0
122
Member Avatar for hurricane123

i made the following program but its not working can someone tell me where i did mistake [CODE]#include <iostream> #include <cstdlib> #include<cmath> #include<iomanip> #include <cstring> int myStrlen (const char* s); int main() { cout<<myStrlen; } int myStrlen (const char* str1) { char str[25] = "How"; strlen(str); return strlen(str); }[/CODE]

Member Avatar for Banfa
0
89
Member Avatar for hurricane123

Why should a function that accepts an array as an argument and process that array,also accept an argument specifying the array's size?

Member Avatar for WaltP
0
59
Member Avatar for hurricane123

I have written a scanner program for oberon language compiler but its incomplete,in the botton i need to write certain code to make this program work properly,so can anyone help me to make this program work properly. [code] FILE *input; int row, col; token t; char buff[bufflen]; int tabwidth; int …

Member Avatar for WaltP
-1
575
Member Avatar for hurricane123

i tried to write a prrogram using array which take 5 digits as in put and reverse that digits,but that program doesn't work.below u can see my program [code] { int no[5]; cin>>no[5]; for(int i=5;i<=0;i--){ cout<<no[i]; } } [/code] try 2 correct the errors.

Member Avatar for restrictment
-1
107
Member Avatar for hurricane123

can anyone give me a clue to write scanner for compile inr oberon language.

-1
54
Member Avatar for hurricane123

double mean (int scores[], int numberOfStudents); double standardDeviation (int scores[], int numberOfStudents); perform the following task by using above function: 1.find maximum 2.find 2nd maximum 3.find minimum 4.find mean 5.find standard deviation 6.display scores 7.read a new set of scores 8.exit program

Member Avatar for hurricane123
0
121