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

Tell me with an example the self-referential structure?

1018

Tell me what is the purpose of 'register' keyword in c language?

1010

Explain bitwise shift operators?

1251

Can you please explain the difference between syntax vs logical error?

1190

Tell me the use of bit field in c language?

1070

What is ## preprocessor operator in c?

1089

What is the scope of static variables in c language?

1 2011

What are the properties of union in c?

1055

What is the difference between exit() and _exit() function?

1045

What is typedf?

1126

Can we add pointers together?

1059

Explain void pointer?

1045

What is malloc() function?

1160

Do you know what are bitwise shift operators in c programming?

1103

What is the difference between strcpy() and memcpy() function in c programming?

1087


Post New C Questions

Un-Answered Questions { C }

Why c is a mother language?

1038


What is difference between %d and %i in c?

1240


provide an example of the Group by clause, when would you use this clause

2199


What will be the outcome of the following conditional statement if the value of variable s is 10?

1293


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

1951


What is printf () in c?

1091


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

2318


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

2103


Explain do array subscripts always start with zero?

1230


What is the code in while loop that returns the output of given code?

1995


Can include files be nested? How many levels deep can include files be nested?

1167


What is non linear data structure in c?

1027


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2499


Why string is used in c?

1009


If fflush wont work, what can I use to flush input?

1106