logo

Crowdly

Browser

Add to Chrome

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!

Every if statement can written using a switch...case statement.

100%
0%
View this question
To prevent the control from "falling through" in a switch...case block, the statement is used.

View this question

The following program does not compile. Identify the reason(s) why.

int main()

{

int know = 3;

switch (know)

{

  case 3:       printf("one\n");

                break;

  case 1+1+1: printf("hi\n");

                break;

  default:      printf("bye\n");

}

return 0;

}

0%
0%
0%
0%
View this question
A 3x4 integer array can be considered as an array of 4 elements, each of which is an integer array of 3 integers.

0%
0%
View this question

Multiple files - each opened as a distinct file stream - can be used for reading/writing data within a C program.

100%
0%
View this question
A one-dimensional array of integers when passed as an argument to a function is received by the function as a pointer to integer.

100%
0%
View this question

Consider the following:

typedef struct node {

int data;

struct node *next;

} NODE;
NODE *xyz[20];
Which of the following statements about xyz is true?

0%
0%
0%
0%
View this question

What would happen if the following piece of code was compiled?

#include <stdio.h>
int main()

{

        int a,b,c;

        scanf("%d",&a);

        scanf("%d",&b);

        float c = a+b;

        printf("%f\n",c);

        return 0;

}

View this question
Which of the following are fundamental data types in C?

0%
0%
0%
0%
0%
View this question
Functions in C enable the program to run faster, since they can run in parallel (rather than sequential).

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

Browser

Add to Chrome