Skip to main navigationSkip to main contentSkip to footer
Wiki Cram
  • Home
  • Blog
Wiki Cram

Category: Uncategorized (page 39,422)

Assessment

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
Assessment
Continue reading “Assessment”…

What is the output of this program? #include int main() { f…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the output of this program? #include int main() { for (int i = 0; i < 3; i++) { printf("%d ", i); } return 0; }
Continue reading “What is the output of this program? #include int main() { f…”…

What is the output of this program? #include int main() { f…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the output of this program? #include int main() { for (int i = 0; i < 5; i++) { if (i == 3) { continue; } printf("%d\n", i); } return 0; }
Continue reading “What is the output of this program? #include int main() { f…”…

The break statement can be used in both switch and loop stat…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
The break statement can be used in both switch and loop statements.
Continue reading “The break statement can be used in both switch and loop stat…”…

What is the output of this program? #include int main() { i…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the output of this program? #include int main() { int x = 2; switch (x) { case 1: printf(“zebra\n”); break; case 2: printf(“anteater\n”); break; case 3: printf(“lion\n”); break; default: printf(“elephant\n”); } return 0; }
Continue reading “What is the output of this program? #include int main() { i…”…

What is the output of this program? #include int main() { i…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the output of this program? #include int main() { int x = 10; x /= 2; printf(“%d\n”, x); return 0; }
Continue reading “What is the output of this program? #include int main() { i…”…

What is the output of this program? #include int main() { i…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the output of this program? #include int main() { int a = 5, b = 10; int result = (a >= b) ? 1 : 0; printf(“%d\n”, result); return 0; }
Continue reading “What is the output of this program? #include int main() { i…”…

What is the purpose of the ‘case’ keyword in a ‘switch’ stat…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the purpose of the ‘case’ keyword in a ‘switch’ statement?
Continue reading “What is the purpose of the ‘case’ keyword in a ‘switch’ stat…”…

Which of the following is a valid floating-point constant in…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
Which of the following is a valid floating-point constant in C?
Continue reading “Which of the following is a valid floating-point constant in…”…

What is the output of this program? #include int main() { i…

Posted on: October 5, 2024 Last updated on: December 11, 2024 Written by: Anonymous
What is the output of this program? #include int main() { int x = 10; x %= 3; printf(“%d\n”, x); return 0; }
Continue reading “What is the output of this program? #include int main() { i…”…
« Previous page 1 … 39,420 39,421 39,422 39,423 39,424 … 68,491 Next page »
Powered by Studyeffect
  • Privacy Policy
  • Terms of Service
Copyright © 2025 WIKI CRAM — Powered by NanoSpace