#include <stdio.h>
int ma
#include <stdio.h>
int ma
Practice Bitwise Operators –
#include <stdio.h>
int main() {
static int a=5;
printf("%d",a--);
if(a)
main();
return 0;
}
#include <stdio.h>
int ma
Practice Bitwise Operators –
#include <stdio.h>
int main() {
static int a=5;
printf("%d",a--);
if(a)
main();
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main(){
int x=-1,y=-1;
if(++x=++y)
printf("Welcome");
else
printf("India");
return 0;
}
By default, a member of a structure will be of aut
Practice Bitwise Operators –
By default, a member of a structure will be of auto storage class.
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main(){
int x=10,y=x,z=x,t;
y-=x;
z=-x;
t=-x;
printf("y=%d z=%d t=%d
",y,z,t);
return 0;
}
Practice Bitwise Operators –
#include<stdio.h>
i
Practice Bitwise Operators –
#include<stdio.h>
int main() {
int a = 5, b = 10;
a = a-- + --b;
b = b-- + --a;
printf("%d, %d", a, b);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x = -3 * -4 % -6 / -5;
printf("x=%d
",x);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x = 4 % 5 + 6 % 5;
printf("x=%d
",x);
return 0;
}
include <stdio.h>
int main
Practice Bitwise Operators –
include <stdio.h>
int main() {
int x;
x =-3 + 4 - 7 * 8 / 5 % 10;
printf("x=%d
",x);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x =3 + 4 - 7 * 8 / 5 % 10;
printf("x=%d
",x);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x =3 * 4 % 5;
printf("x=%d
",x);
return 0;
}
If a variable is a pointer to a structure, then which of the follow
Practice Bitwise Operators –
If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?