Please do subscribe to learn Digital electronics, c programming,java programming, python programming in the easiest way possible. Also more subjects will be added on demand.#aasaanpadhaai
Aasaan padhaai
printf("%d", 4 << 1);Output?
20 hours ago | [YT] | 1
View 0 replies
printf("%d", 0 && 5 || 10);Output?
1 day ago | [YT] | 1
printf("%d", 8 >> 1);Output?
4 days ago | [YT] | 3
printf("%d", 10 > 5 > 2);Output?
6 days ago | [YT] | 1
View 1 reply
int x = 1;switch(x) { case 1: printf("A"); case 2: printf("B");}Output?
1 week ago | [YT] | 5
int i;for(i = 0; i < 5 && i < 3; i++) printf("%d", i);Find the output?
1 week ago | [YT] | 9
int i;for(i = 0; i < 3; i++) printf("%d", ++i);What would be printed?
1 week ago | [YT] | 7
View 2 replies
Find the output?for(i = 10; i; i--) printf("%d", i);
2 weeks ago | [YT] | 4
View 4 replies
Find the output printf("%f", (float)(3 / 2 * 1));
2 weeks ago | [YT] | 5
Find the output int main() { int x = 10, y = 20; printf("%d", x + y * 2);}
2 weeks ago | [YT] | 3
Load more
Aasaan padhaai
printf("%d", 4 << 1);
Output?
20 hours ago | [YT] | 1
View 0 replies
Aasaan padhaai
printf("%d", 0 && 5 || 10);
Output?
1 day ago | [YT] | 1
View 0 replies
Aasaan padhaai
printf("%d", 8 >> 1);
Output?
4 days ago | [YT] | 3
View 0 replies
Aasaan padhaai
printf("%d", 10 > 5 > 2);
Output?
6 days ago | [YT] | 1
View 1 reply
Aasaan padhaai
int x = 1;
switch(x) {
case 1: printf("A");
case 2: printf("B");
}
Output?
1 week ago | [YT] | 5
View 1 reply
Aasaan padhaai
int i;
for(i = 0; i < 5 && i < 3; i++)
printf("%d", i);
Find the output?
1 week ago | [YT] | 9
View 0 replies
Aasaan padhaai
int i;
for(i = 0; i < 3; i++)
printf("%d", ++i);
What would be printed?
1 week ago | [YT] | 7
View 2 replies
Aasaan padhaai
Find the output?
for(i = 10; i; i--)
printf("%d", i);
2 weeks ago | [YT] | 4
View 4 replies
Aasaan padhaai
Find the output
printf("%f", (float)(3 / 2 * 1));
2 weeks ago | [YT] | 5
View 0 replies
Aasaan padhaai
Find the output
int main() {
int x = 10, y = 20;
printf("%d", x + y * 2);
}
2 weeks ago | [YT] | 3
View 2 replies
Load more