python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
I can't understand the output of this code
#include<stdio.h>
int main()
{
int a=1,i;
for(i=0;i<3;i++)
switch((++a)-1)
{
case 0:printf("\nzero");
case 1:printf("%d.one",i+1);
...
Rocky
Votes: 0
Answers: 1
Do nothing in a case of an enhanced switch
I have following enhanced switch case
@Override
public MultivaluedMap<String, String> update(MultivaluedMap<String, String> incomingHeaders,
MultivaluedMap<String, String> cl...
alexander
Votes: 0
Answers: 1
Loop prompt when input isn't a month
I'm trying to loop the prompt when the user enters incorrect input. I googled and clicked almost all the top links, tried while loop and for loop and am just not getting anywhere. When I use the metho...
mamačʔaqƛ j'me
Votes: 0
Answers: 2
Scanner asking for input twice and only storing second input to an array
I'm making a switch case statement in java with conditions. If a person adds a project to the system between 2 and 12 months long, it will be added to an array. If the project duration is less than 2 ...
Aleo111
Votes: 0
Answers: 1