Answer to Question #64576 in C for saddam nadaf
main( )
{
int i = 20 ;
display ( i ) ;
}
display ( int j )
{
int k = 35 ;
printf ( "\n%d", j ) ;
printf ( "\n%d", k ) ;
}
what is the output of this program??
1
2017-01-16T06:43:44-0500
If we correct the errors (no return type for functions) output will be:
20
35
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C
Comments
Leave a comment