92. Which of the following is not possible in C?
Anonymous Quiz
19%
Array of function pointer
19%
Returning a function pointer
40%
Comparison of function pointer
21%
None of the mentioned
94. What will be the output of the following C code?
# include <stdio.h>
int *f();
int main()
{
int *p = f();
printf("%d\n", *p);
}
int *f()
{
int j = 10;
return &j;
}
96. Find the output:
int a=10, b=5;
a-=b+1; printf("%d",a);
int a=10, b=5;
a-=b+1; printf("%d",a);
Anonymous Quiz
36%
6
21%
-6
33%
4
10%
None of the above
❤1
97. which of the following is correct declaration to work with ptr[0]='H'
Anonymous Quiz
25%
char *ptr = "hello!";
34%
char ptr[] = "hello!";
24%
both of the above
16%
none of the mentioned
98. What will be the output of the following C code?
# include <stdio.h>
void f();
int main()
{
#define foo(x, y) x / y + x
f();
}
void f()
{
printf("%d\n", foo(-3, 3));
}
Forwarded from Ankitweblogic.com
99. What will be the output of the following C code?
# include <stdio.h>
void f();
void main()
{
#define max 10
f();
}
void f()
{
printf("%d\n", max * 10);
}
❤1
100. What will be the output of the following C code?
#include <stdio.h>
#define A 1 + 2
#define B 3 + 4
void main()
{
int var = A * B;
printf("%d\n", var);
}
💯 MCQ Posted,
you can give your suggestion what else you want in this channel
you can give your suggestion what else you want in this channel
PHP Developer JD - Fresher
Ocean Studios
0-1 Year / Fresher
2.16 LPA to 2.5 LPA
Sector 62, Noida
Job Description: Looking to hire a talented PHP developer to manage back-end services.
Responsibilities:
- Build efficient, testable, and reusable PHP modules
- Solve complex performance problems and architectural challenges
- Integration of data storage solutions
- Responding to integration requests from front-end developers
Skills
- Strong knowledge of PHP web Frameworks
- Understanding of MVC design
📧 *ankitweblogic@gmail.com
📞 *+91-9213888996*
Ocean Studios
0-1 Year / Fresher
2.16 LPA to 2.5 LPA
Sector 62, Noida
Job Description: Looking to hire a talented PHP developer to manage back-end services.
Responsibilities:
- Build efficient, testable, and reusable PHP modules
- Solve complex performance problems and architectural challenges
- Integration of data storage solutions
- Responding to integration requests from front-end developers
Skills
- Strong knowledge of PHP web Frameworks
- Understanding of MVC design
📧 *ankitweblogic@gmail.com
📞 *+91-9213888996*
❤1