"Learn the fundamentals of coding with simple, easy-to-follow tutorials! Whether you're a beginner or just brushing up on your skills, our channel covers the essentials of programming languages, logic building, and problem-solving. Start your coding journey today!"


Programm

x="Hello, how are you?"
print("how"in x)

11 months ago | [YT] | 0

Programm

What is the output of the following C code?

#include <stdio.h>

int main() {
printf("%d", 5/2);
return 0;
}

11 months ago | [YT] | 0

Programm

int main()
{
int x = 5;
printf("%d %d %d", x++, x++, x);
return 0;
}

1 year ago | [YT] | 0

Programm

int main() {
int x = 5;
x = x++ + ++x;
printf("%d\n", x);
return 0;
}

1 year ago | [YT] | 0

Programm

int main()
{
printf("%d", 5>3);
}

1 year ago | [YT] | 0

Programm

int main()
{
printf("%d", 10%2==0);
}

1 year ago | [YT] | 0

Programm

int main()
{
printf("%d", 5%2);
}

1 year ago | [YT] | 0

Programm

#include<stdio.h>
int main()
{
printf("%d", 5/2);
}

1 year ago | [YT] | 0