Because name and vname don't contain strings. By specifying a size of 4 for each of them, with a 4-character string as the initializer, you've told the compiler to store just those 4 characters without the '\0' null character that marks the end of the string.
The behavior is undefined; you're (un)lucky that it didn't just crash.
Remove the 4 (or change it to 5):
char name[] = "sara";
char vname[] = "sara";
EDIT: Here's a modified version of your program that fixes several other issues (see comments). Other that omitting the 4 on the declarations of name and vname, most of the changes are not directly relevant to your question.
#include <stdio.h> /* needed for printf */
#include <string.h> /* needed for strcmp */
int main(void) /* correct declaration of "main" */
{
char name[] = "sara"; /* omit 4 */
char vname[] = "sara"; /* omit 4 */
if (strcmp(name, vname) == 0)
{
printf("OK\n"); /* \n is at the *end* of the line */
}
else
{
printf("Error\n"); /* as above */
}
return 0; /* not absolutely required, but good style */
}
char name[4] = "sara";; if you specify the size, you must have enough room for the trailing '\0'. – Keith Thompson Sep 22 '11 at 22:21