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

Posted in C,C++ Programing, Career Help, Employment Help, Freshers, Interview Help, Job Search Tips, Programing, Technical Interviews Questions | Tagged , , | Leave a comment

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , | 1 Comment

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , , | Leave a comment

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , | Leave a comment

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , | 3 Comments

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , , , | Leave a comment

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , , | Leave a comment

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 …

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , , , | 1 Comment

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>…

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , , | Leave a comment

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()
{…

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , , | Leave a comment

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

Posted in C,C++ Programing, Freshers, Programing, Technical Interviews Questions | Tagged , | Leave a comment

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 …

Posted in C,C++ Programing, Programing | Tagged , | Leave a comment