7 lines
102 B
Plaintext
7 lines
102 B
Plaintext
// Illegal to dereference non-pointer type "float"
|
|
|
|
float func(float a) {
|
|
*a = 0;
|
|
return 0;
|
|
}
|