Sign up for our free Jobs Alert !
Interview By Skills
Recent Jobs Update
- 09/18/2012 “IBM” Recruitment For Freshers : BE/ BTech/ ME/ MTech/ MCA : 2011 & 2012 Passouts @ All India
- 09/18/2012 Satish Dhawan Space Centre Recruitment 2012 Medical Officer and Scientist Engineers
- 09/18/2012 Madhya Pradesh Forest Department Recruitment 2012 GIS Operator and MIS Application Developer
- 09/18/2012 RITES Limited Graduate Executive Trainees Recruitment September 2012 (67 Posts)
- 09/05/2012 Hewlett Packard - Fresher"s & Experienced Walk-in @ Bangalore
- 09/05/2012 Java Software Engineer ( Walkin on 9th September ):Amiti Software,Bangalore
- 08/23/2012 Karnataka Postal Circle Office Recruitment 2012 Assistant Jobs
- 08/23/2012 RRC Kolkata Recruitment 2012 :Jobs in Railways Recruitment Cell
- 08/23/2012 Uttar Pradesh Junior Engineer (JE) Recruitment 2012 Apply online
- 08/23/2012 Freshers Recruitment Web Developers in Delhi 2012
Tag Archives: c
How to prepare yourself for C Technical Interview :Freshers
C is the basic programing language.At frehers level,when you go for job,each and every body will ask from C.They will …
C++ Basic Interview Questions and Answers-2
RTTI – What is RTTI?
Answer1.
RTTI stands for “Run Time Type Identification”. In an inheritance hierarchy, we can find …
C++ OOPs Interview Questions and Answers-1
What is the difference between class and structure?
Structure: Initially (in C) a structure was used to bundle different type …
C++ Basic Interview Questions and Answers-1
What is C++?
Released in 1985, C++ is an object-oriented programming language created by Bjarne Stroustrup. C++ maintains almost all …
C Basic & Tricky Interview Questions with Answers
Q. Differentiate between for loop and a while loop? What are it uses?
Ans: For executing a set …
C String & Files : Interview Questions with Answers
Q. What is a file?
Ans: A file is a region of storage in hard disks or in auxiliary …
C Pointers : Interview Questions with Answers
Q. What is a pointer?
Ans: Pointers are variables which stores the address of another variable. That variable may be …
Write C program to print Floyd’s triangle
C program to print Floyd’s triangle:- This program prints Floyd’s triangle. Number of rows of Floyd’s triangle to print is …
C program to generate random numbers
This c program generates random numbers using random function, randomize function is used to initialize random number generator.
#include<stdio.h>…
C Program To Compare Two Strings.
This program is used to compare two strings using strcmp function.
#include <stdio.h>
#include <conio.h>
#include <string.h>
int main()
{…
Storage Classes Questions with Answers in C
Storage class has much importace for C interview.If you are going for C Technical interview then most probably questions …
C program to find size of structure without using sizeof operator ?
Generally this program could be asked in technical intview round.They could ask to write C Program to find size of …