C
- @Linda_pp
- 清楚なC++メイドBOT
- 長谷川一輝
- @jj1bdx
- 安藤敏彦
- Siv3D
- @hnokx
- @ishidakei
- TAKEI Yuya
- I (@wx257osn2)
- Tommy6
- @nekketsuuu
- LouiS0616
- @volanja
- 大鎌広
- むてら
- ガチKGB
- 三重野賢人
x
15
1
2
3
4
float area(double r)
5
{
6
r = (1 - r / 1.83) * 1.25;
7
double complex z = cpow(r, .2); // i get an error here on the letter r saying missing colon (;)
8
return r;
9
10
}
11
12
int main(void) {
13
return 0;
14
}
15
$ gcc prog.c -Wall -Wextra -std=c99 -pedantic "-lm"
Start
prog.c: In function 'area': prog.c:7:20: warning: unused variable 'z' [-Wunused-variable] 7 | double complex z = cpow(r, .2); // i get an error here on the letter r saying missing colon (;) | ^
0
Finish