Hi all, which IDE is better to use to learn C++, Visual studio or Code:: Blocks. Which one is better? Or should I use the others?
Hello everyone, should I learn C in parallel with C++, or is it better to stick to one language? What will you advice me?
#include <stdio.h> #define is_power_two(n) (((n) != 0) && !((n) & ((n) - 1))) int main() { int n; scanf("%d", &n); for (int i = 0; i < n; ++i) { scanf("...
Can you help me, how can I output in the console numbers so that they were in one row, like such a stopwatch?
#include <stdio.h> int is_power_two(int n) { return !(n & (n - 1)); } int main() { int n, t; scanf("%d", &n); while (n--) { scanf("%d", &t); p...
Can you help me how I can use one variable to implement the code properly because I have a memory limit of 2mb in my assignment?