Efficient data structure for store/search list of 1000 records
a)array b)double linked list c)circular queue d)hash table
Answers were Sorted based on User's Feedback
write a program to print largest number of each row of a 2D array
what are two kinds of java
64/square(4)
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
Are comments included during the compilation stage and placed in the EXE file as well?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Explain what is the stack?
What are the different types of errors?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the purpose of sprintf() function?
find largest element in array w/o using sorting techniques.