Forum: C++ Oct 17th, 2008 |
| Replies: 3 Views: 569 Could there be any better ways to determine whether a number is prime or not particularly with respect to code execution.
#include <iostream.h>
#include <conio.h>
void PrimeTest(int);
main()... |
Forum: C++ Oct 16th, 2008 |
| Replies: 2 Views: 542 I want the following program to use lesser memory as much as possible. Any suggestions?
#include <iostream.h>
#include <conio.h>
void InputNum(void);
void SearchNum(int);
int... |
Forum: C++ Sep 30th, 2008 |
| Replies: 6 Views: 960 I don't know how to search, delete and edit a record. Could you please help me on this |
Forum: C++ Sep 28th, 2008 |
| Replies: 6 Views: 960 I did the following amendments in the program as you pointed out:
#
cout<<"\n\n******ADDING VIDEO RECORD******\n\n";
#
cout<<"Enter Video Category: ";
#
getline(cin,videoCategory);
#... |
Forum: C++ Sep 27th, 2008 |
| Replies: 6 Views: 960 I am developing an application for a video store, can someone guide me on different fragments of it.I need some help here. Here is what i have come up so far:
#include <iostream.h>//
#include... |
Forum: MS SQL Sep 20th, 2008 |
| Replies: 4 Views: 5,681 I have an entity named Country with fields: CountryID, CountryName where CountryID is a primary key. And i like to create a general stored procedure that does INSERT, UPDATE and DELETE operations.... |