259 views
0 votes
0 votes
void printTwoNumbers( int k ) {
   if (k == 0) return;
   printf ( "%d ",  k );
   printTwoNumbers( k - 1 );
   printf( “%d” , k );
}
Void main()
{
printTwoNumbers(3);
}
What is printed as a result of the call printTwoNumbers(3)?

Please log in or register to answer this question.

No related questions found