Basic and Advance C Question:

Download Job Interview Questions and Answers PDF

Why ca not I do something like this?

C Programming Interview Question
C Programming Interview Question

Answer:

Why can't I do something like this?
extern char *getpass();
char str[10];
str = getpass("Enter password: ");

Arrays are ``second-class citizens'' in C; one upshot of this prejudice is that you cannot assign to them . When you need to copy the contents of one array to another, you must do so explicitly. In the case of char arrays, the strcpy routine is usually appropriate:
strcpy(str, getpass("Enter password: "));
(When you want to pass arrays around without copying them, you can use pointers and simple assignment.

Download C Programming Interview Questions And Answers PDF

Previous QuestionNext Question
Is a pointer a kind of array?Is NULL valid for pointers to functions?