C Sample Programs Tutorials

C Interview Questions 1-10

Hi friends, When i tried to get a job, Maximum I was rejected because of “C” questions. After i completed some interviews, I read lot of “Aptitute Questions based on C”. I posted here all the objective type c qustions What i have now. It may helpful to clear your interview for next level. It contains c aptitude, c quiz, c object type of questions. Try to learn c to […]... Read More »

C Interview Questions 11-20

This post contains 11-20 questions of c program. It will helpful to solve c aptitude questions, c quiz , c objective type questions etc in interview.11-20 QuestionsQ1: void main() { int i=5; printf("%d",i+++++i); } Answer: Compiler Error Q2: #include<stdio.h> main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } } Answer: Compiler Error: Constant expression required in function main. Q3: main() { int i; printf("%d",scanf("%d",&i)); […]... Read More »