Which is the best sort method for library management?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
write a proram to reverse the string using switch case?
What is non linear data structure in c?
What are the valid places to have keyword “break”?
Is null a keyword in c?
A stack can be implemented only using array?if not what is used?
Can a variable be both static and volatile in c?
What do you understand by normalization of pointers?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
What is #include in c?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
What is the total generic pointer type?