Hi,
I have this error while compiling with CUDA
This is the code:
float* p;
float a;
float c = a/ *p ;
I receive this error message:
"error: comment unclosed at the end of file "
a /*p
__^
1 error detected
Hi,
I have this error while compiling with CUDA
This is the code:
float* p;
float a;
float c = a/ *p ;
I receive this error message:
"error: comment unclosed at the end of file "
a /*p
__^
1 error detected
float a /(*p) should work.
You have an error even in gcc.
Yeah! You are right! :">
My mistake External Media