kill is unix based,there is no way it will work in windows, stop trying. the link i send ,tells you the way it can be done in windows,so read...
1) change this to using std::cout; using std::cin; using std::endl; using std::fixed; using std::setprecision; 2) remove it and change code...
http://www.cplusplus.com/reference/clibrary/cstdlib/exit/ when you finish main() you use return 0; ---->(exit(0) finished without errors) exit(1)...
in c++ you can do this #include <iostream> #include <conio.h> int a(double sales,double sepcost){ double NRV; NRV=sales-sepcost;...
for 8086 http://jntuimplab.blogspot.com/search/label/celsius
in what language?
try here http://www.codeproject.com/KB/threads/killprocess.aspx
see the changes below //This program prints the initialized value of two complex numbers and allows //the user to change the values of the real...
from the code above i assume that you run your code with the changes i did, not my project. check your code again,somewhere in your code you must...
check this http://www.cplusplus.com/reference/clibrary/cstring/strstr/
changes you must make and why ========================== #include <iostream> #include <iomanip> using namespace std;//use this method its...
send all classes (welcomeP,Login,.....
if you want to terminate your program immediately you can do this: if (northRegionSales<0) exit(1); put it under all cin<<nortRegionSales;
steps to follow ========= 1) create group of words -find the words you want -put them in a char array--->char words[N][M] where N is how many...
for random numbers check here http://www.java2s.com/Code/C/Math/Generaterandomnumberhowtouserand.htm
if i understand correctly what you want try this //enter sales amounts for North region cout << "Sales amount for North region (negative...
loop problem : while (company != 'S' || company != 's'){...code...} this mean: while the statement (company != 'S' || company != 's') is true...
a better way to do this is #include <iostream> #define M 4 #define N 10 using namespace std; char map[M][N]; int x,y; void welcome() {...
i have made some changes in your code. 1) code for deleting records (delete button) 2) code for next,previous (considering error situations,with...
yes
Separate names with a comma.