int main() { "> int main() { "> int main() { a) Infinite times b) 32767 times c) 65535 times d) Till stack overflows"> How many times the program will print "Study 2 Online" ?<pre> #include<stdio.h><br/> int main()<br/> {<br/>

How many times the program will print "Study 2 Online" ?
  #include<stdio

Home | Discussion Forum

How many times the program will print "Study 2 Online" ?

  #include<stdio.h>
int main()
{
printf("Study 2 Online");
main();
return 0;
}

View More Related Question

2) Point out the error in the program

#include<stdio.h>
int main()
{
int a=10;
void f();
a = f();
printf("%d\n", a);
return 0;
}
void f()
{
printf("Hi");
}

3) Which of the following is not a library function:

4) What will be the output of the program?

#include<stdio.h>
void fun(int*, int*);
int main()
{
int i=5, j=2;
fun(&i, &j);
printf("%d, %d", i, j);
return 0;
}
void fun(int *i, int *j)
{
*i = *i**i;
*j = *j**j;
}

5) What will be the output of the program?

#include<stdio.h>
int main()
{
int fun(int);
int i = fun(10);
printf("%d\n", --i);
return 0;
}
int fun(int i)
{
return (i++);
}

UP Gk Online Test

taiyari24hour.com

Study 2 Online Says....
Kindly log in or signup.