Skip to main content

The C++ Job Seeker's Guide

Job guide
C++ Job Seek 



Whether you’re a fresh CS graduate with no prior experience or you’re a seasoned team leader looking for greener pastures, I have some useful tips that will help you find a job. The first part of this series focuses on the initial job seeking moves, including finding a professional recruiter and which beginner’s mistakes to avoid.

Getting Started

Finding the first job as a C++ programmer is more difficult than finding subsequent jobs since most of the positions offered are aimed at experienced C++ programmers. However, beginners can certainly find good jobs, too. It may take longer, the salary and the compensations might not be much to shout about, but it’s doable.

Where should beginners look for their first job? Many startup companies are looking for fresh graduates to take care of software customization, porting and testing. Other companies may be in search of code maintainers. Yes, it’s not as fun as developing new applications but one can learn a lot from these jobs. Remember: whatever your initial job is, if you excel at what you do, you will be promoted quickly to "sexier" positions. Besides, those debutants’ duties are a good way of discovering which application domain interests you most: GUI, system programming, Web programming or perhaps AI?

Calling all Recruiters
Your most important move is finding a professional recruiter. The benefits for you are significant:

Immediate or near immediate acceptance/rejection responses. Waiting for an answer after a job interview can take forever -- unless you were referred by a recruiter. A recruiter can call your interviewer to sniff around. You never have this privilege! If the interview went well, you’ll be told what to expect next. Otherwise, your recruiter will tell you why you were turned down. This information is priceless.

Professional recruiters rarely send your original résumé to their clients. Instead, they transform it into their proprietary template, highlighting relevant skills while omitting unnecessary profuseness. Your potential employer gets a distilled and optimized résumé tailored for a specific job position.

One question still remains, though: how do you find the right recruiter?

Getting it Right
Obviously, I cannot recommend specific brands. However, you can easily tell apart a professional recruiter from an amateur. Here are a few tests:

The personal touch factor. Does your recruiter settle for your emailed résumé or does she also invite you for a personal interview? A professional recruiter should interview you to get further information about your background, skills, ambitions and personality. This preliminary interview is an essential part of a successful placement, no matter how detailed and neat your résumé is.



Absolutely no fees or charges. Does your recruiter insist on registration fees or any other charges? If the answer is "yes", look elsewhere. Professional recruiters get their commission from the company that hires candidates, never from the candidates themselves.

Specialization. A decent recruiting company has several consultants, each specializing in a different area: real-time/embedded, Windows C++ development, Linux system programming etc. However, if you stumbled upon a recruiter of the "regular expression matching" kind, find another one. The regular expression matching recruiters are those who naively assume that any job position that contains the string "C++" is suitable for any candidate whose résumé contains the same token. Such amateurs might assume that developing GUI in Managed C++ is suitable for a candidate whose specialty is Linux kernel optimization.

Effectiveness. Does your recruiter deliver? Consider the following scenario. You sent a résumé to a recruiting agency. They interviewed you and promised to be in touch. 10 days later, you still haven’t heard from them. Don’t hold your breath. Simply contact a better recruiter. During your interview, your recruiting consultant should tell you what to expect. A job interview per day is quite normal. In any event, don’t sit and wait forever for a call. Don’t buy lame excuses either -- it’s never a "weak season" in the C++ business.

It’s a Small World
The Internet has opened the world for job seekers. A job vacancy in Emeryville, California isn’t necessarily limited to engineers living in that area. However, recruiters and employers alike tend to forget that. It’s therefore best to specify upfront where you live, be it Indianapolis, Perth or Bangalore. More than once amateurs have offered me jobs in companies that were located 5,000 miles away.

In some cases, the employer is willing to pay relocation expenses. However, to reduce the noise level, always state where you live and ask whether the current position is open for non-locals.

Ask and you shall be Given (Answers)
In the past 15 years I’ve met many candidates who were afraid to ask questions that are too important to be left unanswered such as:

What is my salary?

Which compensations do you offer?

Does the job require traveling abroad?

Do you pay for extra hours?

Will I get new projects or only code maintenance tasks?

What are the expected working hours?

Do you offer on site training or courses?

Which development tools and technologies do you use?

Is this job suitable for a student/a mother of a six month old baby?

Do I need a security clearance for this job?

Candidates are afraid to ask these questions because of unawareness, bashfulness, or even because they fear that these questions might deter their potential employee. This is a mistake. I once applied for a job, assuming that my traveling expenses would be paid in full. I learned the hard way that this wasn’t the case. Conclusion: it’s better to give up a job that isn’t right for you than having to quit a week after you started. Don’t leave anything to chance.

If you feel embarrassed to ask any of those important questions, I have a solution for you: ask your recruiter! She should have the answers to most of them at least. If she doesn’t, she won’t hesitate to ask your potential employer.

Popular posts from this blog

C++ Program to find the sum, difference, product and quotient of two integers

#include <iostream.h> #include <conio.h> void main() {   clrscr();   int x = 10;   int y = 2;   int sum, difference, product, quotient;   sum = x + y;   difference = x - y;   product = x * y;   quotient = x / y;   cout << "The sum of " << x << " & " << y << " is " << sum << "." << endl;   cout << "The difference of " << x << " & " << "y <<  is " << difference << "." << endl;   cout << "The product of " << x << " & " << y << " is " << product << "." << endl;   cout << "The quotient of " << x << " & " << y << " is " << quotient << "." << endl;   getch(); }

Program of virtual piano

//////////////Tested And Created By C++/////////////////////////////// #include<stdio.h> #include<dos.h> #include<conio.h> #include<stdlib.h> #define SHOW 1 #define HIDE 2 union REGS input,output; class piano {  public:int BIGKEY,MIDKEY,back,border;     piano()//init constructor     {         BIGKEY=15;         MIDKEY=1;         back=7;         border=15;     } }color; void drawpiano(int x,int y); int check_xy(int x,int y); void BOX(int c,int r,int c1,int r1,int col); int initmouse(); void setupscreen(); void pointer(int on); void restrictmouse(int x1,int y1,int x2,int y2); void check_keys(int x,int y); void getmouse(int *button,int *x,int *y); float freq[7] = {130.81, 146.83, 164.81, 174.61,196, 220, 246.94 } ; int n=0,a=4,backcolor=2,exitcode=1; void showbar(int t) {  if(t>65) t=65;  if(t<1) t=1;  textcolor(15);  for(int q=0;q<=t;t++)  {     gotoxy(3+q,4);     cprintf("Û");  } } void main() {  int

Putimage function in c

putimage function outputs a bit image onto the screen. Declaration:- void putimage(int left, int top, void *ptr, int op); putimage puts the bit image previously saved with getimage back onto the screen, with the upper left corner of the image placed at (left, top). ptr points to the area in memory where the source image is stored. The op argument specifies a operator that controls how the color for each destination pixel on screen is computed, based on pixel already on screen and the corresponding source pixel in memory. c smiling face animation This animation using c draws a smiling face which appears at random position on screen. See output below the code, it will help you in understanding the code easily. C programming code #include<graphics.h> #include<conio.h> #include<stdlib.h>   main() { int gd = DETECT, gm, area, temp1, temp2, left = 25, top = 75; void *p;   initgraph(&gd,&gm,"C:\\TC\\BGI");   setcolor(YELLOW);