what is the significance of static storage class specifier?
No Answer is Posted For this Question
Be the First to Post Answer
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
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,
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
Can you assign a different address to an array tag?
How #define works?
What is the argument of a function in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What is a const pointer in c?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none