This is the sample program for constant concept of c language on a 16 bit Computer. Keyword int, long int... Read More »
This is the sample program for constant concept of c language on a 16 bit Computer. Keyword int, long int... Read More »
Sample program for Cosine mathematics function using C Language. Keyword: c define,c math, c while, c cos... Read More »
Sample program for investment concept using C Language. Keyword: define, int, float, while... Read More »
This programs counts the lines, words, and characters. Keywords : getchar,define, while, EOF, if..else..... Read More »
Count the characters from the input using c programming language. keywords of program are getchar, EOF, while... Read More »
This is the sample program for "Line Counting" from input lines In C Language. Keywords getchar, EOF, While... Read More »
Calculate the Fahrenheit - Celsius and display in table using C Program. Keywords: while, For, Define... Read More »
Find smaller and bigger number in c language. Keywords: c printf, c scanf, c if... Read More »
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 »
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 »