Saturday, May 9, 2009

C++ Programming problem.. Is anyone know how to write a Points of Sales Coding.. Help.. Urgent...?

Points of Sales of a selling mobile and reload coupon using inheritance and other template in c++...

C++ Programming problem.. Is anyone know how to write a Points of Sales Coding.. Help.. Urgent...?
The first thing you should do before you even start coding is to plan you program follow the SDLC life cycle process start with Requirements,Design,Implementation and then maintenance
Reply:You are saying you need someone to write a sales program for you, for some mobile ?home?cellphone? with a coupon reduction?


Why don't you meet me half way and show me what you have so far in pseudo code so I can see where you are, what your logic is.


First forget about templates and inheritance, just think about what you have to do in simple terms. Someone buys something, or multiple somethings, they pay, you give change etc....


Where Can I Get C.V Templates??

thanks

Where Can I Get C.V Templates??
You can download a template from michaelpage.com.


Writing a new c.v?

i need to write on new c.v as im looking for a differant job,does anyone know a web site where i can get a c.v template or help writing my new one


thanks

Writing a new c.v?
To write your own you need to set it as as follows: -





Personal Details





Full Name


Address


Telephone No


Mobile No





Date of Birth





Marital Status





Whether or not you are a driver/car owner with a clean licence


Education





Schools attended and date you started and left and grades achieved


Colleges as above


University as above





Previous Employment starting with your current job working your way backwards listing what the job involved.





Hobbies





State why you think you would be an asset to the new Company i.e. hard working, trustworthy. loyal etc.





Any other info you may think may apply
Reply:Here's a site that helped me





http://jobsearch.about.com/od/cvsamples/...
Reply:CV is curriculum vitae - the longer version of the resume.





Usually used by British Commonwealth countries.





So the person asking is probably from UK, NZ or Australia, maybe South Africa, but not Canada since they use resumes.
Reply:yes.send me your last cv.i might be able to create another.

wreath

C.V help please?

does anyone know were i can download or look at a decent C.V template? or does anone have one

C.V help please?
Check out the website I included- it's got tips and examples and templates.
Reply:Hi check this vidio out.


http://www.videojug.com/film/how-to-writ...
Reply:http://www.gossamer-threads.com/lists/ca...





http://www.ai.sri.com/~gfp/gfp2/node3.ht...





http://avery.com/us/solutions/mailing/pr...





http://www.cvtips.com/CV_example.html





http://www.pongoresume.com/index.cfm?aff...





http://jobsearch.about.com/od/cvsamples/...





http://hotjobs.yahoo.com/careertools/?re...
Reply:Hi do a search on yahoo then loads will come up then click on one to get to the site.


In my experince though it is good tohave absaic Cv but hwen applying for a particular job you need to be answering the specific questions i.e. person speck or job content to get an interview.


At my work we have to give an interview to somone who hits all the specifications- i.e. what experience do you have in??? than state that experience as if this is asked it is usually crucial to the job.


CV'sa re a bit too general and my work no longer want cvs they want a written job application to the specific job applied for and I work for a large organisation





Hope this information helps.


Good luck
Reply:If you have microsoft works on your computer, you should have some C.V templates on there:)


C++ Programming Help. Need a Program?

My problem to solve is:





The C++ standard template library contains a %26lt;string%26gt; class that can be used to handle strings. String functions that exist in the C library %26lt;string.h%26gt; are replaced by member functions of the %26lt;string%26gt; class. This project requires your own implementation of a simplified string class, called mystring. The class should contain all the basic string handling functions, as well as overloaded operators for some manipulations. All member functions should use basic operations. Make use of pointers where possible. Do not use functions from %26lt;string.h%26gt;.





A driver program must also be included to test all the functions. It should display a menu and complete instructions to the user.





Anyone whose willing to do this program just type the answer for the problem and post it. I will be proud that you made this programme for me. Pls Help. I need within 2 days

C++ Programming Help. Need a Program?
And I will be proud that you gave your paycheck to me.
Reply:You can find someone to help you from http://k.aplis.net/


C++ Programming.?

The C++ standard template library contains a %26lt;string%26gt; class that can be used to handle strings. String functions that exist in the C library %26lt;string.h%26gt; are replaced by member functions of the %26lt;string%26gt; class. This project requires your own implementation of a simplified string class, called mystring. The class should contain all the basic string handling functions, as well as overloaded operators for some manipulations. All member functions should use basic operations. Make use of pointers where possible. Do not use functions from %26lt;string.h%26gt;.





A driver program must also be included to test all the functions. It should display a menu and complete instructions to the user.





Anyone whose willing to do this program just type the answer for the problem and post it. I will be proud that you made this programme for me. Pls Help. I need within 1 day

C++ Programming.?
I've got one right here but I cant post it, I sorry kid, my conscience wont let me do you homework for you for free as you so elegantly explain it.





You even explain how your too lazy to search for it yoursef, I know there are like a billion string classes out there.





Give us what you've come up with any we'll help you if not good luck!
Reply:Wow. How do you expect to pass your class if you don't do this yourself? Or if you can't even use google to look for the answer yourself?
Reply:good luck with the AP CS class in High School.





That was one of the easiest things to learn.


Templates For C.V.?

Does anybody know if there are any sites on the net that offers different templates for writing your C.V?


Thank you

Templates For C.V.?
There are lots and lots on the internet, just google the term "CV Templates" and it will bounce back with a ton of 'em.





Microsoft Office also has one included.





You could make one up and send me it, and I will criticise it for you.
Reply:monster.co.uk
Reply:Most computers have Microsoft Works pre installed, there is a CV template facility in the task launcher.


Most word processor programmes also have CV templates
Reply:i did a great one on Monster - but if you have Microsoft Publisher, there's dozens on there - just have a look!

balsam

Write a C++ program that will calculate the area and perimeter of a rectangle by using the function template t

The program will read the values of length and width from the user trough keyboard and passes these values to the function calculate(T x, T y). The function calculates the area and perimeter of the rectangle and displays the result on the screen. The function returns no value.

Write a C++ program that will calculate the area and perimeter of a rectangle by using the function template t
template%26lt; typename T%26gt;


void calculate(T x, T y) {


std::cout%26lt;%26lt; "Perimeter = "%26lt;%26lt; 2*(x+y)%26lt;%26lt; std::endl;


std::cout%26lt;%26lt; "Area = "%26lt;%26lt; x*y %26lt;%26lt; std::endl;


}





int main(void) {


int x, y;


std::cin %26gt;%26gt; x %26gt;%26gt; y;


calculate%26lt;int%26gt;(x, y);


return 0;


}
Reply:quite a demand you have there :)


i haven't used C++ in a while but here is the procedure general programming syntax.





function t (Tx,Ty)


var perimeter;


var area;


perimeter = 2Tx + 2Ty;


area = Tx * Ty;


writeln("perimeter = " perimeter, "area = " area);


end function


I have got Microsoft visual C# express .Where can I write a program in it? In which template ?

The simplest programs are console applications, so usually you start there.





You can always try Microsoft's Tutorials:


http://msdn2.microsoft.com/en-us/library...





But of course a few web searches would probably turn up something even better.


In C++, how do I use the STL sort command to sort a vector of template class objects?

Here is what I have in mind. It compiles, but will it work? Can't run the program yet.





Key is one of the private elements in the class, it's either an int or a string.





sort(imaVector.begin(Key), imaVector.end(Key))

In C++, how do I use the STL sort command to sort a vector of template class objects?
// Opless.cpp


// compile with: /EHsc


// Illustrates the defining the %26lt; operator to sort vectors


//


// Functions:


//


// operator%26lt; - Vector comparison operator.


//


// vector::begin - Returns an iterator to start traversal of the vector.


//


// vector::end - Returns an iterator for the last element of the vector.


//


// vector::iterator - Traverses the vector.


//


// vector::push_back - Appends (inserts) an element to the end of a


// vector, allocating memory for it if necessary.


//


// sort algorithm - Sorts the vector.


//


//////////////////////////////////////...





// The debugger can't handle symbols more than 255 characters long.


// STL often creates symbols longer than that.


// When symbols are longer than 255 characters, the warning is disabled.


#pragma warning(disable:4786)





#include %26lt;iostream%26gt;


#include %26lt;vector%26gt;


#include %26lt;string%26gt;


#include %26lt;algorithm%26gt;





using namespace std ;





// The ID class is used for team scoring. It holds each player's name


// and score.


class ID


{


public:


string Name;


int Score;


ID() : Name(""), Score(0) {}


ID(string NewName, int NewScore) : Name(NewName), Score(NewScore) {}


};





// In this example, an ID is equivalent only if both name and score match.


bool operator==(const ID%26amp; x, const ID%26amp; y)


{


return (x.Name == y.Name) %26amp;%26amp; (x.Score == y.Score);


}





// IDs will be sorted by Score, not by Name.


bool operator%26lt;(const ID%26amp; x, const ID%26amp; y)


{


return x.Score %26lt; y.Score;


}





// Define a template class for a vector of IDs.


typedef vector%26lt;ID%26gt; NAMEVECTOR;





int main()


{


// Declare a dynamically allocated vector of IDs.


NAMEVECTOR theVector;





// Iterator is used to loop through the vector.


NAMEVECTOR::iterator theIterator;





// Create a pseudo-random vector of players and scores.


theVector.push_back(ID("Karen Palmer", 2));


theVector.push_back(ID("Ada Campbell", 1));


theVector.push_back(ID("John Woloschuk", 3));


theVector.push_back(ID("Grady Leno", 2));





cout %26lt;%26lt; "Players and scores:" %26lt;%26lt; endl;


for (theIterator = theVector.begin(); theIterator != theVector.end();


theIterator++)


cout %26lt;%26lt; theIterator-%26gt;Score %26lt;%26lt; " "


%26lt;%26lt; theIterator-%26gt;Name %26lt;%26lt; endl;


cout %26lt;%26lt; endl;





// Sort the vector of players by score.


sort(theVector.begin(), theVector.end());





// Output the contents of the vector in its new, sorted order.


cout %26lt;%26lt; "Players ranked by score:" %26lt;%26lt; endl;


for (theIterator = theVector.begin(); theIterator != theVector.end();


theIterator++)


cout %26lt;%26lt; theIterator-%26gt;Score %26lt;%26lt; " "


%26lt;%26lt; theIterator-%26gt;Name %26lt;%26lt; endl;


}


Output


Players and scores:


2 Karen Palmer


1 Ada Campbell


3 John Woloschuk


2 Grady Leno





Players ranked by score:


1 Ada Campbell


2 Karen Palmer


2 Grady Leno


3 John Woloschuk


What Does this say on http://nid.naver.com/nidlogin....

so i can join on http://panyroom.jr.naver.com/

What Does this say on http://nid.naver.com/nidlogin....
http://www.google.com/translate?u=http%3...

wisteria

C.v. templates?

Can anyone suggest where I could get a c.v. template from for free? or how much in english pounds does a c.v. cost?

C.v. templates?
well here you go.





http://office.microsoft.com/en-gb/templa...





p.s free





http://office.microsoft.com/en-gb/templa...


RNA polymer of 25% C & 75%A is used as a template in in vitro translation.Whats expected frequency of Lys,Gln?

among the amino acids incorporated into the polypeptides that form,what is the expected frequency of LYS?Pro?Gln? explain please

RNA polymer of 25% C %26amp; 75%A is used as a template in in vitro translation.Whats expected frequency of Lys,Gln?
This is a statistical problem and you have to ignore the fact that you won't have an ATG (Met) inititator codon with which to start translation, but I digress. Anyway, if the template is all C's and A's, then there are 8 possible combinations (actually permutations, n^r) of codons:





CCC


CCA


CAA


AAA


AAC


ACC


CAC


ACA





The codons for Lys, Pro and Gln are listed here (as well as other websites):





http://www.cbs.dtu.dk/courses/27619/codo...





Since there is only one codon for Lysine that has only C's and A's (AAA) and since there are two codons for Proline with only C's and A's (CCC, CCA) and since there is only one codon for Glutamine with only C's and A's (CAA), then with equal amounts of C's and A's in the mRNA:





1/8 (12.5%) of the amino acids would be Lys


2/8 (1/4, 25%) would be Pro


1/8 (12.5%) would be Gln





However, since there are 25% C and 75% A in the mRNA templates this will sway the probabilities a bit towards the codons containing more A's. So, since the codons that matter are:





AAA


CCC


CCA


CAA





Then, the probabilities are:





AAA (0.75 * 0.75 * 0.75 = 0.421875)


CCC (0.25 * 0.25 * 0.25 = 0.015625)


CCA (0.25 * 0.25 0.75 = 0.046875)


CAA (0.25 * 0.75 * 0.75 = 0.140625)





So, the probability (frequency) of Lys in the peptides is 42.1875%, Pro is 1.5625% + 4.6875% = 6.25% and Gln is 14.0625%


In C++, How do I declare an overloaded extraction operator member for a template class?

Here is what I have so far, there is a prototype in the class declaration header file and here I am defining the overloaded operator. My class has two template values, but with this overloaded operator I want to send values to screen or file depending on how it's used, and return the istream object. What is the correct way to do this? Here is the incorrect way:





template %26lt;class T1, class T2%26gt;


ostream %26amp;operator%26lt;%26lt; ( ostream %26amp;strm, %26amp;kOut )


{


strm %26lt;%26lt; kOut.key %26lt;%26lt; endl %26lt;%26lt; kOut.value %26lt;%26lt; endl;


return strm;


}

In C++, How do I declare an overloaded extraction operator member for a template class?
Well, looking at your additional details, and extrapolating a little, I guess you have something like this:





template %26lt;typename T1, typename T2%26gt;


struct KeyValuePair


{


   T1 key;


   T2 value;


};





the output stream operator would thus look like this:





template %26lt;typename T1, typename T2%26gt;


std::ostream%26amp; operator%26lt;%26lt; (std::ostream%26amp; os, KeyValuePair%26lt;T1, T2%26gt; const%26amp; keyVal)


{


   return


      os %26lt;%26lt; keyVal.key


         %26lt;%26lt; std::endl


         %26lt;%26lt; keyVal.value


         %26lt;%26lt; std::endl;


}


Inserting the textbox template field contents in a gridview to table using C#?

I have added the textboxes in the template fields of the gridview.Now i want to insert the contents i entered in a textbox template field of the gridview to a table in the button click event.Can anyone please write the code for me.

Inserting the textbox template field contents in a gridview to table using C#?
Visit this link of MSDN (below links)

anemone

How to implement template classes and structs inside classes (C++)?

Say I have a template class declared as follows:





template %26lt;class T%26gt;


class whatever {


private:


struct Node {


//...


};


Node* find();


//...


};





I want to implement the find() member function but I don't know how. What I tried doing was as follows:





template %26lt;class T%26gt;


whatever%26lt;T%26gt;::Node whatever%26lt;T%26gt;::find() {


}





But that doesn't work. Do I simply have to implement the function inside the class definition? That apparently works just fine. If that's the case, should I just implement all member functions inside the class definition for stylistic reasons?

How to implement template classes and structs inside classes (C++)?
Ummm... I think that you need to try this outside the class:





template%26lt;class T%26gt;


whatever::Node *find(){


//Your find routine here.


}





You got a little tangled up in the template thing there,


I think. I hope this helps you out.


Question on C++ Templates... This is the last question on my review and I seem to not grasp the question?

Write a C++ function using a template called findmax that takes two numeric input parameters (all of the same type), and returns the larger of the two. Note that the input parameters can be int, float, double, or long.

Question on C++ Templates... This is the last question on my review and I seem to not grasp the question?
A function template lets you define parameters of a generic type. When the compiler parses the function call it then fills the function in with the proper datatype. This lets you call a single function definition with multiple types.





Example for adding two numbers (it should be simple for you to modify it to find the maximum):





#include %26lt;iostream%26gt;


using namespace std;





template %26lt;class T%26gt;


T add(T a, T b)


{


 return (a + b);


}





int main()


{


 cout %26lt;%26lt; add(3,4) %26lt;%26lt; endl;


 cout %26lt;%26lt; add(54.2, 32.4) %26lt;%26lt; endl;


 return 0;


}


Anyone know where i can get a free template for a c.v?

do you have MS Word? There are free ones in Word templates. Depending on which version you have there are different ways to find them. I suggest opening Word and then press F1 or 'Help' and under the 'find' tab type templates. You can also find them under this link http://office.microsoft.com/en-gb/templa...





and type 'CV' in the template search box. If you're still stuck email me at eccobdi@yahoo.co.uk and I'll send you some

Anyone know where i can get a free template for a c.v?
go to google and type in Cv templates





see if that helps you
Reply:There is a template for a c.v. on microsoft word. click on word, then on new and a resume template and a letter template will come up.


Can i download a template for a c.v.?

http://www.itsales.org.uk/cover.html

Can i download a template for a c.v.?
U will ofcourse get it on goolge search. Quote the word - freeware CV templates.
Reply:if your using microsoft word, just go to File%26gt;New%26gt;template
Reply:If you use Microsoft Office Publisher, you can go to "Publications for print" on the left of the screen when you first load up the program, then onto "Resumes", and then Curriculum Vitae resume. The great thing about this is that it asks you for personal information and then instantily puts it into the document in the right places! It says all the things you should put in like Qualifications, achevements etc, and where to put them!

cyclamen

When using a template to write a C.V. what is meant by the heading OBJECTIVES?

What infromation are they looking for and what is the best layout. When I wrote my last C.V. the layout was totaly different

When using a template to write a C.V. what is meant by the heading OBJECTIVES?
I always assume it means goals.


What are your objectives professionally and personally.


Hope this helps
Reply:You've had numerous answers, there's no need to keep asking the same question!
Reply:You only need to ask once.


What is template in C language?

I've never done a template, the only ways I do it are


Flash


CSS/HTML





~Brendon


-Hope I helped!

What is template in C language?
By template you can create a user-defined datatype.In c language you can use structure concept to create a template.


In c++ class is also available.
Reply:C++ has templates, C doesn't have.
Reply:template is an program that can work in different environment means if you have a template that shows grades of student(and total marks), this program can be used in class result, and as i said it is template so it can also be used in employee salary generation. in second conditon the template will show the grades or total of salary.





Template are the predefined programs that can be used in defferent programs or conditions.. (have u hear Polymorphism that is concept) different condition ,different variable


Online C.V maker/template?

Hi.Can anyone advise me of a good site that i can create a C.V online which can then be printed off.Ive tried a few of the jobcentre/monster websites but im looking for a pdf document type thing that would let me download it then fill in the blanks.If anyone knows what im talking about and can help then i would welcome any advice. Thanks

Online C.V maker/template?
The MS Word program actually has a resume template that you can use - little known fact. Most of the online sites only allow you to upload into their system - monster, careerbuilder, hotjobs, etc. work that way.





Good luck.


I want to make my C.V.....,im applying for a jobs..,so i need best CV Template or C.V format..,?

please help....,I'm applying a job in Hotel/Restaurant and Retail....,


i don't know how to right a good cv so please give me format or Template of CV....,


Many thanks.

I want to make my C.V.....,im applying for a jobs..,so i need best CV Template or C.V format..,?
For a template, try http://www.cvtips.com/CV_example.html





Sell yourself with confidence.


Use your CV to make a positive first impression on the employer who will be reading it. It needs to contain the right information about you in relation to the vacancy, and it needs to communicate to the recruiter in the right way. Include any pieces of information which prove you are the right person for the job – highlight specific examples of your skills, experience and academic background to alert the reader to your employability.





Keep it concise.


Recruiters can often be faced with mountains of CVs, so they don’t want to be faced with a rambling, overly long document. Remember that your CV is only the first step in the job hunt – it’s a way of getting your foot in the door. Once you get to interview stage you can go into further detail. As far as your CV is concerned, keep it punchy and stick to the job of selling your abilities. Your CV should ideally be no longer than two sides of A4 paper.





Tailor your CV.


Take time to tailor your CV to each individual role for which you are applying. No matter how similar two roles might be, each recruiter will be looking for different things in your CV, so you must make sure it speaks their language.


Research the company or simply use the job ad to gauge what they’re looking for in a potential employee and link your skills and experience to the requirements of the role.





Don’t leave gaps.


By leaving gaps in your CV, you are inviting the recruiter to guess what you might have been up to for those periods of time. Instead of allowing them to make their own assumptions, give details of what you were doing. Even if you spent time out of employment – travelling, for example - think about what you were doing during that time and pick out aspects which might be used to highlight your suitability. These might include so-called ‘soft skills’ such as communication, self-management, teamwork or project management.


To avoid leaving gaps, update your CV regularly whether or not you are thinking of applying for jobs. By doing this, you will avoid the need to think back to points in your career which happened a long time ago.





Ensure it’s free of errors!


One of the easiest ways for recruiters to weed out ‘weaker’ CVs is to scan them for errors. By failing to check your CV for basic spelling and grammatical mistakes, you are setting yourself up for a fall at the first fence. For starters, you should always re-read your CV once you have put it together to make sure it is effective and suitable for the role. Root out any errors using your PC’s spell checker or even get a friend to cast their eye over it and give you their opinion.
Reply:go to bayt.com

wedding floral centerpieces

Where can i find a good, free C.V template?

You can find sample resume at websites like http://myitcareer.org/

Where can i find a good, free C.V template?
go to the microsoft office site and there are free templates to download


Does using Standard Template Library (C++) have a significant penalty on performance?

I have often been adviced not to use STL (C++) as it has a performance penalty. What is your experience with STL?

Does using Standard Template Library (C++) have a significant penalty on performance?
Oh no if you will ask so much difficult questions i wont able to answer. Sorry i don't know. plz ask easy questions.


From where I can download C.V template or resumes for free ?

I am working in Investment Bank.





Thanks !

From where I can download C.V template or resumes for free ?
microsoft.com has a large selection of templates; go to the download section and search for resumes


What does it mean in C++ that template definitions cannot nest?

im working on a program for my computer class and i get this error and im probably being stupid but i can figure it out. any help?

What does it mean in C++ that template definitions cannot nest?
It doesn't mean anything because templates can be nested... post your code and we'll help you.
Reply:This error is usually a follow up error indicating something else is wrong. Please read this post from experts exchange:





Q:


Please help resolve problems with this code. I am getting two errors


I am using VS6.0 SP6


Many Thanks


-----------------------------





//Parameter values for templates


//Besides the template arguments preceded by the class or typename keywords that represent a type, function templates and class templates can include other parameters that are not types whenever they are also constant values, like for example values of fundamental types.





// array template


#include %26lt;iostream%26gt;


using namespace std;








template %26lt;class T, int N%26gt;


class array {


T memblock [N];


public:


void setmember (int x, T value);


T getmember (int x);


};





template %26lt;class T, int N%26gt;


array%26lt;T,N%26gt;::setmember (int x, T value) {


memblock[x]=value;


}





template %26lt;class T, int N%26gt;


T array%26lt;T,N%26gt;::getmember (int x) {


return memblock[x];


}





int main () {


array %26lt;int,5%26gt; myints;


array %26lt;double,5%26gt; myfloats;


myints.setmember (0,100);


myfloats.setmember (3,3.1416);


cout %26lt;%26lt; myints.getmember(0) %26lt;%26lt; '\n';


cout %26lt;%26lt; myfloats.getmember(3) %26lt;%26lt; '\n';


return 0;


}


-----------------------------


Errors I am getting:


'array%26lt;T,N%26gt;::setmember' : unable to resolve function overload


D:\Manpreet\My CPP\Templates1\template.cpp(24) : error C2954: template definitions cannot nest


Error executing cl.exe.


------------------------------





Answer: Problem is with definition of setmember method. It should be:





template %26lt;class T, int N%26gt;


void array%26lt;T,N%26gt;::setmember (int x, T value) {


memblock[x]=value;


}





You forgot to specify the 'void' return type for 'setmember()', thus the compiler assumed 'int'.





Abt the errors:


%26gt;%26gt;'array%26lt;T,N%26gt;::setmember' : unable to resolve function overload





That leads to the return type...





%26gt;%26gt;error C2954: template definitions cannot nest





... and that was a followup error, since





array%26lt;T,N%26gt;::setmember (int x, T value)





*without* the return type looks like a nested template...

bouquet

Good online C.V. template?

do you have MS Word? There are free ones in Word templates. Depending on which version you have there are different ways to find them. I suggest opening Word and then press F1 or 'Help' and under the 'find' tab type templates. You can also find them under this link http://office.microsoft.com/en-gb/templa...





and type 'CV' in the template search box.

Good online C.V. template?
search "cv.pdf" or "cv.doc" in google and you can see lots and lots of people's cvs.
Reply:http://jobsearch.about.com/od/curriculum...





http://www.cvtips.com/





http://jobstar.org/tools/resume/res-cv.p...





http://www.quintcareers.com/curriculum_v...


I need a c.v template that i can download to my p.c., free. Can anyone help please?

regards sue

I need a c.v template that i can download to my p.c., free. Can anyone help please?
http://www.download.com/CV-template/3000...
Reply:Don't use a template!!!!





Make your own, make it stand out from the thousand others that will be passing across the personnel managers desk.





Don't make it too flowery (unless you're a graphic designer) but make it different. OK, the information needs to be like you get on every other CV, but it's the way you do it that gets you noticed.





Oh and remember, if you are insisting on downloding a template - the American for CV is Resumé!
Reply:I got a good one, in fact a couple, from the microsoft office online website.
Reply:There are loads of different styles - which one you use will depend on what type of job you're going for. When I last did mine, I put something like CV template free into Google - it came up with tons of sites that give not only CV templates, but also job application letters, advice about interviews etc - it's worth having a look. Good luck!


Is it possible to disallow certain template types using template specialization in C++?

How can I restrict a programmer to instantiating a template class with only certain variable types in C++? A simple example would be if I only want to allow the programmer to use a template class with either floats or doubles. Or perhaps allow all types except int.





Is there a way to do this so that I do not need to specify separate template specializations for both floats and doubles? How can I provide a single specialized template for both float and double instantiations?

Is it possible to disallow certain template types using template specialization in C++?
Yes, you can. By using a helper template class, you can create a compiler error.





You can find the idea here:


http://www.dbforums.com/showthread.php?t...





Depending on how you define the unspecialized helper template, you can either default to allow and specialize to block certain type or default to block and specialize to allow certain types. If you default to block and specialize to allow, then it is possible that a user of your template figures out your design and does the specialization to allow.





In the case where you default to block:


template %26lt;class T%26gt; class AllowInstantiation { AllowInstantiation(){} };





This template creates an empty class with a private constructor. In your main template create:





template%26lt;class T%26gt; class MyRealClass


{


// yadda yadda yadda


AllowInstantiation%26lt;T%26gt; m_allowTemplate;


};





For any class that does not have an specialization of AllowInstantiation, MyRealClass cannot be instantiated because of AllowInstantiation's private constructor.





To allow a type, specialize AllowInstantiation. For example to allow float:


template %26lt;%26gt; class AllowInstantiation%26lt;float%26gt; {};


The default constructor for the empty class defaults to public and so it can be instantiated.





To do the reverse, i.e. allow most types and block a few


template %26lt;class T%26gt; class AllowInstantiation {};


Unspecialized template allows default constructor.





template %26lt;%26gt; class AllowInstantiation%26lt;int%26gt; { AllowInstantiation(){}};





Now int is blocked because of private constructor.


Hi.......Can anyone plz help me with the following question.....How do we exactly write a template in C++??

i AM NOT ABLE TO UNDERSTAND HOW TO WRITE A TEMPLATE???PLZ HELP!!!!!!!!!





Write a template class “binary_tree” in C++. The class should have functions for creation of the tree, insertion and deletion of an element, searching a key value in the tree, Post order traversal and output the value in ascending order. Make suitable assumptions, if any.

Hi.......Can anyone plz help me with the following question.....How do we exactly write a template in C++??
template%26lt;class T%26gt; class binary_tree


{


public:


binary_tree()


{


}





void insert(T%26amp; item)


{


}





void delete(T%26amp; item)


{


}


};





Creating the class:





binary_tree%26lt;CString%26gt; myTree;

gift

How to create application template in C++ . net 2003?

i am new to programming and i am asked to build an application template using c++, i have ,net 2003.





i searced msdn web site but it seemed to me that explanations about app template are for 2005. they doesnt match with 2003. i have to say that i am also new to .net framework.





anybody can help me?

How to create application template in C++ . net 2003?
niga this is how. Read and learn





http://www.google.co.uk/search?hl=en%26amp;q=c...


Anyone know of a fantastic FREE C.V. template?

I have been searching for a job for a few months now but I haven't found anything. I want to give my C.V. a revamp but haven't a clue how. I have tried searching on Google for a free C.V. template but they all seem a bit boring!


I think the contents of my C.V. is ok as I have been told by an agency I registered with what to do it like!


Please Help!

Anyone know of a fantastic FREE C.V. template?
I totally understand where you're coming from. I was job hunting a few months ago, and I was constantly looking for resources to see how I can spark up my CV.


So I've got some links for you, but before that, a couple of tips:


1. Avoid paid consultants. Wherever you go you come across people telling you how withput their help (which is very reasonably priced...NOT!) you won't be able to get a job because your CV will be binned streight away.


Don't buy any of that nonesense. Read as many CV examples as you can, and very quickly you'll get a feel of what works for you.


2. Do try to open the CV with a few bullet points about what you are and what you bring. Strong, assertive sentences will set the tone for everything that follow.


3. Illustrate your skills through your experience: you didn't just *do* something, you utilized skills for that. So draw attention to that.


4. Adapt your CV and cover letters for the positions you're applying to, and incorporate key words from the job posting. When people read that they go: OH! exactly what I was looking for.





The Very best site:


http://www.quintcareers.com/resres.html





examples of CVs:


http://www.alec.co.uk/resume-examples/in...





Tips:


http://www.misc-jobs.com/resumes_landing...





Good luck!
Reply:Usually you will find that agencies will rewrite and amend your CV for you.


Ask them!
Reply:If you have the correct contents, then all you need to do is change the layout using different fonts, bold, in the centre, underlined and maybe put a border around it - they seem to look quite good (well I think so anyway!)
Reply:Why not check out my website which has tons of job related advice:


http://www.gjobadvice.co.uk
Reply:Not sure if it has a template.. but BBC.CO.UK website has a lot of good tips.. use the search option and search the BBC site only..


Need help fixing the errors in this Template C++Program. I'm lost.Seems to be the same error repeatedly.Thanks

#include %26lt;iostream%26gt;


using namespace std;





template %26lt;class T%26gt;


class Complex


{


friend ostream %26amp;operator%26lt;%26lt;( ostream %26amp;, const Complex %26amp; );


friend istream %26amp;operator%26gt;%26gt;( istream %26amp;, Complex %26amp; );


public:


Complex(const T = 0.0, const T = 0.0 ); // constructor


T%26amp; operator+( const Complex%26amp; ) const; // addition


T%26amp; operator-( const Complex%26amp; ) const; // subtraction


T%26amp; operator*( const Complex%26amp; ) const; // multiplication


T%26amp; operator=( const Complex%26amp; ); // assignment


T%26amp; operator==( const Complex%26amp; ) const;


T%26amp; operator!=( const Complex%26amp; ) const;


// T%26amp; operator[](double);





private:


double real; // real part


double imaginary; // imaginary part


};








// Constructor


template %26lt;class T%26gt;


Complex%26lt;T%26gt;::Complex(T r, T i)


{


T real = r;


T imaginary = i;


}





// Overloaded addition operator





template %26lt;class T%26gt;


T %26amp;Complex%26lt;T%26gt;::operator+(const Complex %26amp;operand2) const


{


Complex sum;





sum.real = real + operand2.real;


sum.imaginary = imaginary + operand2.imaginary;





return sum;


}


// Overloaded subtraction operator





template %26lt;class T%26gt;


T %26amp;Complex%26lt;T%26gt;::operator-(const Complex %26amp;operand2) const


{


Complex diff;





diff.real = real - operand2.real;


diff.imaginary = imaginary - operand2.imaginary;


return diff;


}





// Overloaded multiplication operator


template %26lt;class T%26gt;


T %26amp;Complex %26lt;T%26gt;::operator*(const Complex %26amp;operand2 ) const


{


Complex times;





times.real = real * operand2.real + imaginary * operand2.imaginary;


times.imaginary = real * operand2.imaginary + imaginary * operand2.real;


return times;


}





// Overloaded = operator


template %26lt;class T%26gt;


T %26amp;Complex%26lt;T%26gt;::operator=(const Complex %26amp;right )


{


real = right.real;


imaginary = right.imaginary;


return *this; // enables concatenation


}





template %26lt;class T%26gt;


T %26amp;Complex%26lt;T%26gt;::operator==( const Complex %26amp;right ) const


{ return right.real == real %26amp;%26amp; right.imaginary == imaginary ? true : false; }





template %26lt;class T%26gt;


T %26amp;Complex%26lt;T%26gt;::operator!=( const Complex %26amp;right ) const


{ return !( *this == right ); }





template %26lt;class T%26gt;


ostream%26amp; operator%26lt;%26lt;( ostream %26amp;output, const Complex%26lt;T%26gt; %26amp;complex )


{


output %26lt;%26lt; complex.real %26lt;%26lt; " + " %26lt;%26lt; complex.imaginary %26lt;%26lt; 'i';


return output;


}





template %26lt;class T%26gt;


istream%26amp; operator%26gt;%26gt;( istream %26amp;input, Complex%26lt;T%26gt; %26amp;complex )


{


input %26gt;%26gt; complex.real;


input.ignore( 3 ); // skip spaces and +


input %26gt;%26gt; complex.imaginary;


input.ignore( 2 );





return input;


}








//Use the following main function to test your program


int main()


{


double a=4.3, b = 8.2, c = 3.3, d = 1.1;


Complex%26lt;double%26gt; x, y(a,b), z(c,d), k;





cout %26lt;%26lt; "Enter a complex number in the form: a + bi\n? ";


cin %26gt;%26gt; k;


cout %26lt;%26lt; "x: " %26lt;%26lt; x %26lt;%26lt; "\ny: " %26lt;%26lt; y %26lt;%26lt; "\nz: " %26lt;%26lt; z %26lt;%26lt; "\nk: "


%26lt;%26lt; k %26lt;%26lt; '\n';


(x = y + z);


cout %26lt;%26lt; "\nx = y + z:\n" %26lt;%26lt; x %26lt;%26lt; " = " %26lt;%26lt; y %26lt;%26lt; " + " %26lt;%26lt; z %26lt;%26lt; '\n';


(x = y - z);


cout %26lt;%26lt; "\nx = y - z:\n" %26lt;%26lt; x %26lt;%26lt; " = " %26lt;%26lt; y %26lt;%26lt; " - " %26lt;%26lt; z %26lt;%26lt; '\n';


(x = y * z);


cout %26lt;%26lt; "\nx = y * z:\n" %26lt;%26lt; x %26lt;%26lt; " = " %26lt;%26lt; y %26lt;%26lt; " * " %26lt;%26lt; z %26lt;%26lt; "\n\n";


if ( x != k )


cout %26lt;%26lt; x %26lt;%26lt; " != " %26lt;%26lt; k %26lt;%26lt; '\n';


cout %26lt;%26lt; '\n';


x = k;


if ( x == k )


cout %26lt;%26lt; x %26lt;%26lt; " == " %26lt;%26lt; k %26lt;%26lt; '\n';





int e=4, f=8, g=3, h=2;


Complex%26lt;int%26gt; l, m( e,f), n(g,h ), p;





cout %26lt;%26lt; "Enter a complex number in the form: a + bi\n? ";


cin %26gt;%26gt; p;


cout %26lt;%26lt; "x: " %26lt;%26lt; l %26lt;%26lt; "\ny: " %26lt;%26lt; m %26lt;%26lt; "\nz: " %26lt;%26lt; n %26lt;%26lt; "\nk: "


%26lt;%26lt; p %26lt;%26lt; '\n';


(l = m + n);


cout %26lt;%26lt; "\nx = y + z:\n" %26lt;%26lt; l %26lt;%26lt; " = " %26lt;%26lt; m %26lt;%26lt; " + " %26lt;%26lt; n %26lt;%26lt; '\n';


(l = m - n);


cout %26lt;%26lt; "\nx = y - z:\n" %26lt;%26lt; l %26lt;%26lt; " = " %26lt;%26lt; m %26lt;%26lt; " - " %26lt;%26lt; n %26lt;%26lt; '\n';


(l = m * n);


cout %26lt;%26lt; "\nx = y * z:\n" %26lt;%26lt; l %26lt;%26lt; " = " %26lt;%26lt; m %26lt;%26lt; " * " %26lt;%26lt; n %26lt;%26lt; "\n\n";


if ( l != p )





cout %26lt;%26lt; l %26lt;%26lt; " != " %26lt;%26lt; p %26lt;%26lt; '\n';


cout %26lt;%26lt; '\n';


l = p;


if ( l == p )


cout %26lt;%26lt; l %26lt;%26lt; " == " %26lt;%26lt; p %26lt;%26lt; '\n';








return 0;


}

Need help fixing the errors in this Template C++Program. I'm lost.Seems to be the same error repeatedly.Thanks
Haven't compiled your code, but looking at the definitions:





-Your +,-,* operators should return Complex%26lt;T%26gt;, not T - when you add two Complex%26lt;T%26gt;, you want to get a Complex%26lt;T%26gt; object and not a T object back.





-Your ==,!= operators should return bool, as these are logical operators.





-Your private members should be of type T - otherwise, when you assign them, you are implicitly saying that T is a specific type.





-In your constructor, you are redeclaring your members; use something like





Complex( T r, T i ) : real( r ), imaginary( i ) { }





to initialize them.





-In your operator implementations, you need to set a type for your return object. You'll need to declare them as Complex%26lt;T%26gt; objects, not just Complex.
Reply:It might help to know what the error message is./