mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 10:25:32 +02:00
19 lines
249 B
C++
19 lines
249 B
C++
![]() |
|
||
|
int foo(int firstarg, bool secondarg) {
|
||
|
bool firstvar = true;
|
||
|
int secondvar = 18;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main (int argc, char *argv[])
|
||
|
{
|
||
|
int intvar = 80;
|
||
|
bool boolvar = true;
|
||
|
char chararray[201];
|
||
|
|
||
|
foo(15, true);
|
||
|
return 0;
|
||
|
}
|
||
|
|