dev-c++ tag

3 questions


1 answers
74 views
0
'for' loop initial declarations are only allowed in C99 or C11 mode

//#include <stdio.h>long fib(long num);int main(void){ int seriesSize; scanf (%d, &seriesSize); if (seriesSize <2) seriesSize =2; printf(First %d Fibonacci numbers: \n, seriesSize); for...

2 years ago

1 answers
56 views
0
Calculate array length within C language function

Declares an integer array of length 10 within the main function and forwards it to the func function to output different lengths of the calculated array and the calculated array length within the main...

2 years ago

1 answers
48 views
0
I have a question about the phenomenon of not being compiled.

I'm a student studying coding with DEV C++. Even if you type a normal code to see what you touched wrong, the two screens below will appear. Because of this, I'm not making progress and I'm going craz...

2 years ago

© 2024 OneMinuteCode. All rights reserved.