python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Why did I write the declaration into the main function that the program does not run
When I write the following three lines of code into the main function, the program will not run.
const int N = 500005;
long long a[N]={0};
long long b[N]={0};
At first, I thought it was a problem wit...
Sophia912
Votes: 0
Answers: 1
How do I stop the output from being printed in jshell
How do I stop the output being printed?
I don't want it to be like this
i=15
$1==15
I just want it to be processed without the output being printed
I tried looking everywhere and trying new lines of ...
person_tm
Votes: 0
Answers: 1
How do you write a declaration in racket that returns either a string or #f (false)?
I have the following function in racket:
( : search-stack : Symbol KeyStack -> String)
(define (search-stack s stack)
This function searches the stack for a specific string and returns the matching...
Max
Votes: 0
Answers: 1
Is this a syntax error or an error with the compiler?
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char charName[] = "John";
int charAge[] = 35;
printf("There once was a man named %s\n", charName);...
lotsoflanguagesprogrammer
Votes: 0
Answers: 2