Can you please explain the scope of static variables?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
Why dont c comments nest?
What is line in c preprocessor?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Explain what does a function declared as pascal do differently?
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,
how to compare two strings without using strcmp() function??
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
Why static is used in c?
a simple c program using 'for' loop to display the output 5 4 3 2 1
Can we change the value of static variable in c?
char p="data"; printf(p);