Synonymous with pointer array
a) character array
b) ragged array
c) multiple array
d) none
No Answer is Posted For this Question
Be the First to Post Answer
How can you avoid including a header more than once?
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.
What does it mean when the linker says that _end is undefined?
What is the restrict keyword in C?
what r callback function?
What is fflush() function?
what are the general concepts of c and c++
all c language question
Why ca not I do something like this?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
const char * char * const What is the differnce between the above tow?.
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6