As you can see, temp is a pointer, which points to a random address where the nameless array with the value Paras resides. And that array is a string constant.
For your program to work, you need to use an array instead of a pointer:
char temp[6] = "Paras";
Now if you're wondering why it's temp[6] instead of temp[5], the above code initializes a string, and completely different from:
char temp[5] = {'P', 'a', 'r', 'a', 's'};
Strings are terminated with a null terminator \0. And the string initialization will be like:
char temp[6] = {'P', 'a', 'r', 'a', 's', '\0'};