Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

char array assigned string works, but shouldn't #38

Open
derrell opened this issue Oct 30, 2014 · 0 comments
Open

char array assigned string works, but shouldn't #38

derrell opened this issue Oct 30, 2014 · 0 comments
Labels

Comments

@derrell
Copy link
Owner

derrell commented Oct 30, 2014

This program prints "hll" but should err on line 6.

#include <stdio.h>

int main(int argc, char * argv[])
{
    char    string[] = "hello";
    string = "hll";
    printf("[%s]\n", string);
    return 0;
}
@derrell derrell added the bug label Oct 30, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant