Explain how do I determine whether a character is numeric, alphabetic, and so on?
No Answer is Posted For this Question
Be the First to Post Answer
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
What are loops c?
What is a const pointer in c?
What are the two types of structure?
What are header files and explain what are its uses in c programming?
is forign key will be unique key any table or not?
post new interiew question and aptitude test papers
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
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,
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
Describe the order of precedence with regards to operators in C.
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}