What are the types of i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is a structure in c language. how to initialise a structure in c?
What is double pointer in c?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
what is used instead of pointers in java than c?
totally how much header files r in c language
Why c is known as a mother language?
String concatenation
What are the difference between a free-standing and a hosted environment?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
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 is a const pointer?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above