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!

What is the output of the following program that compiles correctly? (Hint: When evaluating logical operators, the compiler ignores the remainder of the expression when it is sure of the final answer at any point of evaluation of the sub-expression - something often referred to as "short-circuit evaluation". This is a cryptic hint, I know, but enjoy unravelling it and discovering its meaning and implication!)

#include <stdio.h>
int main()

{

int a= -2, b= -1, c = 0, d = 1, e = 2;

int r1, r2;

r2 = a++ || ++b || c++ || ++d || e;

r1 = a && b++ && ++c && d++ && ++e;

printf("%d %d %d\n", r1,r2,a+b+c+d+e);

return 0;

}

View this question

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");

View this question

To compile a C

program named "hello.c" using a GNU C compiler, which command

would you use?

View this question

Given

the formula for motion

d = ut + ½at2

, which of the following

correctly calculates d?

View this question

Which of these data types is/are detected by the

compiler as erroneous?

View this question

What would be the output of the following correctly compiling program?

#include <stdio.h>

int main()

{

int a = 5;

int b = !!a;

printf("%d %d\n",a, b);

}

View this question

Which

of the following statements about the sizeof() operator in C is true?

View this question

Which of the following vim editor commands is correctly matched with its function?

View this question

What is the difference between rm and rmdir?

View this question
What command should be used at the command prompt of your Windows/Linux/Mac machine to connect to the Unix server we use for the course? Assume the login name of the user is u20241999.
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!