Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~5K People Reached
About Me

Trade with Trust Service With Excellence

Favorite Forums
Favorite Tags
Member Avatar for surferxo3

I am getting garbage even I am delete an char pointer array.. Please help me to prevent this garbage... Here you can find my code. Link :http://www.upload.pk/files/XKGioMek1335637669.html

0
80
Member Avatar for surferxo3

I have the following input and my program is not running: 1 3 2 1 3 7 8 [CODE] #include<iostream> #include <cstdlib> using namespace std; int main() { int arr[7], min, i=0, j=0; for(int i=0; i<7; i++) { cout<<"Enter value at arr["<<i<<"]: "; cin>>arr[i]; } min = arr[j]; for(; i<7; …

Member Avatar for Lerner
0
227
Member Avatar for surferxo3

Let me be specific: I have the following components in my project: 1) Form 2) Textbox 3) Button 4) DataGridView 5) A class named Database - It has all the code stuff to interact with the database means it can insert,update,delete etc I type the desired name in the textbox …

Member Avatar for surferxo3
0
3K
Member Avatar for surferxo3

[CODE] public partial class DataTrialForm : Form { private String connectionString = null; private SqlConnection sqlConnection = null; private SqlDataAdapter sqlDataAdapter = null; private SqlCommandBuilder sqlCommandBuilder = null; private DataTable dataTable = null; private BindingSource bindingSource = null; private String selectQueryString = null; public DataTrialForm() { InitializeComponent(); } private void …

0
68
Member Avatar for surferxo3

I have the following problem: I have sample form with reportViewer on it & report type is rdlc report on c#. I added a new dataset then selected tableadpater on it then selected the database from mysql and I selected the Filldata method & provided a query to retrieve data …

Member Avatar for surferxo3
0
183
Member Avatar for surferxo3

I have a winform with 3 textboxes; 1 for Day, 2 for Month & 3 for Year plus a button when clicked opens a new form which has the reportViewer1 control there to display the report. I have no problem with just adding a dataset and adding fill & get …

0
105
Member Avatar for surferxo3

[code] //Mohammad Sharaf Ali k092094 #include <iostream> #include <iomanip> #include <string.h> #include <math.h> using namespace std; struct tree { char a[20]; int s; struct tree *left,*right; }*root=NULL,*tt[20]={NULL},*temp,*temp2,*t2,*ri,*le; struct pqu { int info; char a[20]; struct pqu *ptr; }*front=NULL,*t,*par,*t1,*p1,*p2; struct pqu* fp(int info) { struct pqu *p=NULL; for(t1=front;t1->info<info&&t1!=NULL;t1=t1->ptr) { p=t1; } …

Member Avatar for thekashyap
-1
129
Member Avatar for surferxo3

[CODE] //Mohammad Sharaf Ali k092094 #include <iostream> #include <iomanip> #define INFINITY 999 //Max Length using namespace std; class Graph { private: int adjMatrix[15][15]; int predecessor[15],distance[15]; bool mark[15]; int source; int numOfVertices; public: void read(); void initialize(); int getClosestUnmarkedNode(); void dijkstra(); void output(); void printPath(int); }; void Graph::read() { cout<<"Enter the …

Member Avatar for template<>
0
208
Member Avatar for surferxo3

[CODE] #include <iostream> #include <iomanip> #include <cstdlib> #include <ctime> using namespace std; int main () { int arr[9][9], n; srand(time(0)); for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { n = rand() % 9; if (arr[i][j] == n) { n = rand() % 9; arr[i][j] = n; …

Member Avatar for surferxo3
0
143
Member Avatar for surferxo3

[CODE] #include <iostream> #include <iomanip> using namespace std; int c0=0,c1=0,c2=0,c3=0,c4=0,c5=0,c6=0,c7=0,c8=0,c9=0; class array{ private: int arr[10]; public: friend istream& operator >> (istream& in, array& a) { cout<<"Enter 10 value in the array!\n\n"; for (int i=0; i<10; i++) { cout<<"Enter the value at ["<<i<<"]: "; in>>a.arr[i]; } } void check_count (void) { …

Member Avatar for surferxo3
0
120
Member Avatar for galmca

i 'm trying to make this program of a prime number in c language but ive not been able to do so,can any 1 of u plz help me out...i want to do 2 things... 1)First,test whether a number is prime or not 2)generate the series of all the prime …

Member Avatar for ramesh thota
0
468