logo

Crowdly

Coding Café

Looking for Coding Café test answers and solutions? Browse our comprehensive collection of verified answers for Coding Café at dle.plaksha.edu.in.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

There are two places where swapping is done. This could not be substituted with a function that can be invoked twice.

View this question

Which of the following function declarations (also called as "function prototypes") are valid?

View this question

The following function would not compile correctly:

void func(int x, int y)

{

  int z;

  scanf("%d", &z);

  return z;

}

View this question
What is the output of the following program?

#include <stdio.h>

int main() 

{

    int i = 0;

    while (i < 5) {

        if (i % 2 == 0)

        {

                putchar('*');

                continue;

        }

        printf("%d ", i);

        i++;

    }

    return 0;

}

View this question

Function calls that return void may not be used as a part of an expression. 

View this question

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;

}

View this question

Which of these statements is/are true?

View this question
Which of the following loop statements is/are valid in C?

View this question

The principles of top–down design and structured programming dictate that a program should be divided into a main module and its related modules. 

View this question

The address operator (&) is used to tell the compiler to store data at an address. 

View this question

Want instant access to all verified answers on dle.plaksha.edu.in?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!