Try Magic Notes and save time.
Try it free
Try Magic Notes and save time
Crush your year with the magic of personalized studying.
Try it free
hello quizlet
Home
Subjects
Expert Solutions
Log in
Sign up
SE_ Kỳ 1 _PRF192
4.6 (68 reviews)
Flashcards
Learn
Test
Match
Q-Chat
Get a hint
A
Click the card to flip 👆
Once the function ends, the control is returned back to the ... function and execution continues from the statement immediately after the function call
a. executing
b.called
c.declared
d.calling
Click the card to flip 👆
1 / 184
1 / 184
Flashcards
Learn
Test
Match
Q-Chat
Created by
Thaycacac
Share
Share
Terms in this set (184)
A
Once the function ends, the control is returned back to the ... function and execution continues from the statement immediately after the function call
a. executing
b.called
c.declared
d.calling
A
what number is equivalent to -4e3?
a.-4000
b.-400
c..004
d..0004
e.-40
C
what is the output when the sample code below executed?
#include<stdio.h>
int fn(int v){
if(v==1||v==0)
return 1;
if(v%2==0)
return (fn(v/2)+2);
else
return(fn(v-1)+3);
}
int main()
{
printf("%d\n",fn(5));
return (0);
}
a.6
b.9
c.8
d.7
e.5
B D
which 2 options are correct about the function scanf?
a.EOF indicates that scanf filled all addresses successfully
b. scanf returns the number of addresses successfully filled of EOF
c.return avoid type
d.EOF indicates that scanf did not fill any address AND encountered an end of data character.
D
what is the output when the sample code below is executed?
int s=35;
printf("%d%d%d",s==35,s+20,s>40)
a.1 35 1
b.1 55 1
c.0 55 0
d.1 55 0
See more