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

Un-Answered Questions { C }

What is the difference between the expression “++a” and “a++”?

1276


What are variables and it what way is it different from constants?

1289


Describe how arrays can be passed to a user defined function

1348


What are the different file extensions involved when programming in C?

1347


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

1281


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

1304


What is a newline escape sequence?

1165


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

1231


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

1135


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

1287


What is gets() function?

1192


What is a sequential access file?

1246


What is FIFO?

1843


What is spaghetti programming?

1203


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 ].

1145