- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
10 Posted Topics
Hi Everyone I am currently writing a program in C++ which uses a very big matrix, I have been told to try and store the matrix in disc and try to retrieve only the chunks of the matrix I will be needing and keep swapping them around. The problem is … | |
I am using Visual Studio 2010 C++ and its giving me an error "bad allocation" if I increase the array size t0 40 000 by 35 000, I am new to C++ not sure what to do. [CODE]// SWTest.cpp : Defines the entry point for the console application. // #include … | |
Re: First you need to set a cookie using something like [CODE]Response.Cookies("MyCookie") = 1233654[/CODE] then to retrieve it you use something like [CODE]Request.Cookies("MyCookie").Value[/CODE] | |
Re: [QUOTE=dr.e;1105779]Hi. Can some one please help me as i am trying to read from access database and that work with data in a program. I used to work with VB from previous version and now it seems to me there are differencies. If someone can paste a working simple code. … | |
Re: [QUOTE=rp_prakash;1104993]hi this is my coding if i run this coding. first time i able to get data then i click second time i got error Procedure or function "procedure name" display has too many arguments specified" why this error plz explain for me Dim mydst As New DataSet MyConnection.ConnectionString = … | |
I have written the below code in C ,the problem I have one proccessor and I am not sure if it will work, [code=c] /*#include <stdio.h> #include <stdlib.h> required for randomize() and random() #include <conio.h>*/ #include <stdlib.h> #include <stdio.h> #include "mpi.h" #include <math.h> //int N = 8; /*typedef struct { … | |
Re: im guessing part of the code would be something like this.. Help with Code Tags (Toggle Plain Text) If text1 = text2 Then Image.Show If text1 = text2 Then Image.Show i have also written some pseudo code to start it off Help with Code Tags (Toggle Plain Text) fullword = … | |
I am currently trying to delete lines of a file in java? | |
Re: //This code is in C but you can convert it easily #include<stdio.h> #include <unistd.h> #define k 4 main() { int numElements,nu=0,i=0,j; int cpu[k],arrival[k],start=0,finish[k],cpu1[k],turn[k],arrival1[k],t,me; int m = 0,wait [k]={0,0,0,0},y; printf("Please enter the CPU Cycles:\n");//println getnumbers(cpu); printf("Please enter the Arrival Times:\n"); getnumbers(arrival); copyelt(cpu,cpu1); copyelt(arrival,arrival1); for(i=0;i<k;i++){ } i = 0; while(m==0){ if(cpu[i] >= … | |
Re: Try this one // to determine the cost on the devices if( devices < 30 ) cost = 46.00; else if( devices >= 30 &&devices < 70 ) cost = 43.00; else if( devices > 70) cost = 40.00; |
The End.