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

What are the characteristics of arrays in c?

1054

What are global variables?

1195

What is getch() function?

1071

What is assignment operator?

1059

What are the types of operators in c?

1066

What is storage class?

1079

List the different types of c tokens?

1074

What is character set?

1172

What is unary operator?

1108

What is a ternary operator in c?

1125

Do string constants represent numerical values?

1399

What are the rules for the identifier?

1169

What is meant by type specifiers?

1137

What is an arrays?

1082

What is else if ladder?

1022


Post New C Questions

Un-Answered Questions { C }

Explain indirection?

1145


What is the acronym for ansi?

1051


What is a dynamic array in c?

1161


How do you override a defined macro?

1273


What are the features of c language?

1074


I have seen function declarations that look like this

1046


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

1298


Is it possible to use curly brackets ({}) to enclose single line code in c program?

1325


What are structural members?

1016


Why c is called a mid level programming language?

1074


What is a stream water?

1223


What do header files do?

1078


What is abstract data structure in c?

1052


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2314


What does a function declared as pascal do differently?

1136