logo

Crowdly

Browser

Add to Chrome

Questions Bank (1394417 total)

The figure shows the course of the enzymatically

catalyzed reaction.

  Which of the following types of inhibition applies to:

View this question

Using a preprocessor directive to define a constant is that if a change is made in one place, it is sufficient to have the change reflected in other parts of the program.

0%
0%
View this question

What should be written in the missing part of the printf() statement (line 32) to complete the program correctly?

View this question
Explain within a sentence or two the overall approach being taken to solving the problem.
View this question

The above program uses a preprocessor constant in line number .

View this question

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

0%
100%
View this question

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

0%
0%
View this question

The following function would not compile correctly:

void func(int x, int y)

{

  int z;

  scanf("%d", &z);

  return z;

}

0%
0%
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

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

0%
0%
0%
0%
View this question