Computer Science, asked by ahnafabid, 2 months ago

What will be the output of the program

given below?

iinclude <stdio.h>

void show(void);

int main()

{

show();

print: ("Being ");

return e;

void show()

{

print("Human ");


ahnafabid: ok

Answers

Answered by atrs7391
1

Answer:

Being Human

I think you got it


atrs7391: Seriously!! you're the student of CSE. Sorry I can't help you, I am just in standard 8 but I can recommend you watching YT videos, it will surely help you.
atrs7391: BTW you know bengali right??
atrs7391: nevermind just for curiorsity
ahnafabid: I know bengoli
atrs7391: yes same I also know but I am from India nice to meet you and sorry that I cannot help you.
ahnafabid: it's ok
ahnafabid: Fill in the blanks to print the numbers O
through 5 using the do-while loop:
#include
int main()
{
int c = 0;
(1)_
{
printf ("%d", c);
_(2)__++;
}
while (c <= 5) _(3)_
return 0;
a (1) while (2) c (3);
b. (1) do (2) c (3);
c.(1) do (2) while (3) C;
d.(1) do (2) while (3);
atrs7391: d.(1) do (2) while (3);
atrs7391: b. (1) do (2) c (3);
atrs7391: the first one is wrong
Similar questions