V
Vijay
Hello everybody, I am new to the C language can anybody tell me the
diffrence between
char nm[10] and char *nm ?
diffrence between
char nm[10] and char *nm ?
Hello everybody, I am new to the C language can anybody tell me the
diffrence between
char nm[10] and char *nm ?
Vijay said:Hello everybody, I am new to the C language can anybody tell me the
diffrence between
char nm[10] and char *nm ?
Hello everybody, I am new to the C language can anybody tell me the
diffrence between
char nm[10] and char *nm ?
rahul said:Hello everybody, I am new to the C language can anybody tell me the
diffrence between
char nm[10] and char *nm ?
char foo[10] defines an array of 10 characters. char *bar defines bar
as a pointer to a character.
Array name without any indexes is the pointer to the first element of
the array.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.