Шукаєте відповіді та рішення тестів для Coding Café ? Перегляньте нашу велику колекцію перевірених відповідей для Coding Café в dle.plaksha.edu.in.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
#include <stdio.h>int main() { int i = 0; while (i < 5) { if (i % 2 == 0) { putchar('*'); continue; } printf("%d ", i); i++; } return 0;}
void func(int x, int y){ int z; scanf("%d", &z); return z;}
Which of the following function declarations (also called as "function prototypes") are valid?
Function calls that return void may not be used as a part of an expression.
The principles of top–down design and structured programming dictate that a program should be divided into a main module and its related modules.
How many times does the while loop run?
#include <stdio.h>int main(){ int i = 1; while (i <= 5) printf("%d ", i++); putchar('\n'); return 0;}
Which of these statements is/are true?
What would be the output if the following code segment is compiled and run?
int a=100;if (a >= 10) printf("Theory\n");else if (a >= 20) printf("Lab\n");else if (a >= 30) printf("Quiz\n");