1)How do we check whether a linked list is circular?
2)What is the output of this program?
#include
##include
main()
{
typedef union
{
int a;
char b[10];
float c;
}
Struct;
Struct x,y = {100};
x.a = 50;
strcpy(x.b,"hello");
x.c = 21.50;
printf("Union x : %d %s %f \n",x.a,x.b,x.c );
printf("Union y : %d %s %f \n",y.a,y.b,y.c);
}
3)What is a Null object?
4)Name some pure object oriented languages.
5)What is a container class? What are the different types of container classes?
6)What will be the output of the following program:
#include
main()
{
printf("%x",-1<<4);
}
7)What are the major differences between C and C++?
8)What is an incomplete type?
9)What are printf and scanf, call by reference or call by value?
10)What is a const pointer?
11)When should a type cast be used and when should it not be used?
12)Which is the easiest sorting method?
13)Which is the quickest sorting method?
14)Which are the best sorting algorithms to sort a linked list?
15)What is a preprocessor and what will it do for a program?
16)How can a string be converted into a number?
17)How can a number be converted into a string?
18)What is a heap?
19)Why does n++ execute much faster than n+1?
20)What is modular Programming?
21)Which expression always returns true and which expression always returns false?
22)What is the difference between "malloc" and "calloc"?
23)Is C
a)A low level language
b)A middle level language
c)A high level language ?
24)Why doesn't C support function overloading?
25)What is the difference between global int & static int declaration?
Click here for the solutions
Hello. Could you please clear the 19th Question. The question asks difference between n++ and n+1, but the solution gives the explanation for n++ and ++n .
ReplyDeleteBut i hope the question really meant d/b n++ and ++n , coz i was asked the same question in an interview, n i gave this same answer.! fingers crossed.
Thank you again.
+n is faster than n++ is faster than n=n+1
DeleteMachine usually have increment x as well as add const to x
In case of n++, you will have 2 memory access only (read n, inc n, write n )
In case of n=n+1, you will have 3 memory access (read n, read const, add n and const, write n)
Thank you very much. Your blog is well presented and easy to navigate. But try to use blockquotes for codes to differentiate them from paragraphs.
ReplyDeleteContent found here are quite different and educative.
www.hunter4u.com
questios are very logical for basics
ReplyDeleteansweers should b beside the questions
nice
ReplyDelete2nd question:
ReplyDeletehow y.b value is d?
give the answer for that questions
ReplyDeletesent me more c question
ReplyDeleteplease give ans to the ques
ReplyDeleteC Interview Questions and Answers for campus placement preparation at gyantonic.com
ReplyDeleteamzing qestions...fully satisfied with answrs.....
ReplyDeleteThis section covers C programs often asked in campus interviews and freshers walk-in. It helps job seekers who are about to attend TECHNICAL interview round.
ReplyDeleteHere you will find simple C programming questions with answers basically asked in technical interviews.
Sample C Program To Swap Two Numbers Without Using Temporary Variables.
Sample C Program To Print First Ten(10) Natural Numbers.
Sample C Program To Find Factorial Of A Number.
Sample C Program To Print Fibonacci Series Upto 100.
Sample C Program To Find The Roots Of A Quadratic Equation.
Sample C Program To Count The Number Of Times The Largest Digit Occurs In A Number.
Sample C Program To Print Number Of Vowels, Consonants, Characters, Words & Spaces In A Line Of Text.
Sample C Program To Display A Sequence Using Stars.
Sample C Program To Print A Star Pyramid.
Sample C Program To Print Floyd’s Triangle.
Sample C Program To Transpose A Matrix.
Sample C Program To Add Two Matrices.
Sample C Program For Entering An Array Of Elements.
Sample C Program For Deleting An Element From An Array.
Sample C Program For Inserting An Element In An Array.
plz give me answer of these questions
ReplyDeleteI enjoy this 25 questions on c interview questions, but I want some basic c interview questions along with answer like website
ReplyDeleteprogrammerinterview
pls answer these question
ReplyDeletehere i can improve my knowledge about c...this is very useful questions..thank you for the author...can u send me more questions and puzzles?
ReplyDeleteplz give me answer for those questions
ReplyDelete