void main()
{
char *p;
p="%d\n";
p++;
p++;
printf(p-2, 300);
}Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
70
Questions
3/4
Page
Pick an option on a question to see the right answer and solution.
void main()
{
char *p;
p="%d\n";
p++;
p++;
printf(p-2, 300);
}Select an option to see the answer and solution.
void main()
{
int c[] = {2.8,3.4,4,6.7,5};
int j, *p=c, *q=c;
for(j=0;j<5;j++){
printf(" %d ", *c);
++q;
}
for(j=0;j<5;j++){
printf(" %d ", *p);
++p;
}
}Select an option to see the answer and solution.
void main()
{
int a[] = {10,20,30,40,50}, j, *p;
for(j=0; j<5; j++){
printf("%d" ,*a);
a++;
}
p = a;
for(j=0; j<5; j++){
printf("%d" ,*p);
p++;
}
}Select an option to see the answer and solution.
#include<stdio.h>
void main()
{
char s[]={'a','b','c','n','c','\0'};
char *p, *str, *str1;
p=&s[3];
str=p;
str1=s;
printf("%c", ++*p + ++*str1-32);
}Select an option to see the answer and solution.
void main()
{
static char *s[] = {"black", "white", "yellow", "violet"};
char **ptr[] = {s+3, s+2, s+1, s}, ***p;
p = ptr;
++p;
printf("%s",*--*++p + 3);
}Select an option to see the answer and solution.
#include<stdio.h>
main()
{
int n;
n=f1(4);
printf("%d",n);
}
f1(int x)
{
int b;
if(x==1)
return 1;
else
b=x*f1(x-1);
return b;
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
#include <stdio.h>
main()
{
if (sizeof(int) > -1)
printf("True");
else
printf("False");
}Select an option to see the answer and solution.
(x = foo())!= 1 considering foo() returns 2Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
#include<stdio.h>
static inline int max(int a, int b)
{
return a > b ? a : b;
}
main()
{
int m;
m=max(-6,-5);
printf("%d",m);
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
#include <stdio.h>
main()
{
char *p = "Examveda C-Test";
p[0] = 'a';
p[1] = 'b';
printf("%s", p);
}Select an option to see the answer and solution.
#include <stdio.h>
void f(double b)
{
printf ("%ld\n",b);
}
int main()
{
inline f(100.56);
return 0;
}Select an option to see the answer and solution.
main()
{
unsigned a=10;
long unsigned b=5l;
printf(“%lu%u”,a,b);
}Select an option to see the answer and solution.
Select an option to see the answer and solution.
Select an option to see the answer and solution.
main()
{
long float a=-25.373e22;
printf("%lf",a);
}Select an option to see the answer and solution.