Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

C Interview Questions
Questions Answers Views Company eMail

Not all reserved words are written in lowercase. TRUE or FALSE?

1276

What are comments and how do you insert it in a C program?

1300

What is a newline escape sequence?

1159

Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1223

Is it possible to have a function as a parameter in another function?

1127

Why is it that not all header files are declared in every C program?

1280

What is gets() function?

1188

What is a sequential access file?

1240

What is FIFO?

3 1839

What is spaghetti programming?

1199

Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

1137

Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

1131

Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

1469

Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

1106

GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

1155


Post New C Questions

Un-Answered Questions { C }

What are the rules for the identifier?

1217


Is there any demerits of using pointer?

1114


How can I call fortran?

1099


Can a pointer be null?

1079


What is the difference between declaring a variable and defining a variable?

1341


Explain the Difference between the New and Malloc keyword.

1186


Explain what is the stack?

1157


In which layer of the network datastructure format change is done

1941


Write a program to print “hello world” without using semicolon?

1179


How can a program be made to print the line number where an error occurs?

1134


what do the 'c' and 'v' in argc and argv stand for?

1216


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

6020


what type of questions arrive in interview over c programming?

2081


What are preprocessor directives in c?

1156


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2662