Cursos
Cursos
Compilador de Código
Compilador de Código
Discutir
Teams
Fazer login
Registrar
Menu
Q&A Discussões
Pesquisar
Pesquisar
Faça uma pergunta
Faça uma pergunta
This given program is still running though I did not use curly braces,how?
c++
else-statements
0 Voto
1 Resposta
29th Sep 2019, 3:58 AM
Harshit Nema
Is it necessary to put statements after "if" in curly braces? In cpp
cpp
else
If
0 Voto
2 Respostas
17th Sep 2017, 5:35 AM
ADVAIT P CHAND
Why do we use three curly braces in a for loop. Is it necessary..
loops
0 Voto
3 Respostas
23rd Nov 2017, 9:38 AM
Anjali Kushwaha
How does simple use of curly braces and parentheses make a difference in speed?
python
tuples
1 Voto
2 Respostas
14th Feb 2017, 6:54 AM
Yehlo in
what is the benefit of the curly brace { } and how to use it in the code
c#
8 Votos
4 Respostas
10th Nov 2016, 2:59 PM
Hassan Amr
What is the difference between the curly braces{} and the normal bracket() in c#
c#
0 Voto
2 Respostas
4th Sep 2017, 12:06 PM
Ben Acq
What is wrong in it
brackets
curly
error
0 Voto
3 Respostas
7th May 2020, 6:05 AM
Kumar Mangalam
why we can omitt curly braces when we have only one statment after "if" and "else" statement??
loops
0 Voto
4 Respostas
27th Mar 2020, 7:11 AM
Abhishek
Can we use the # symbol and curly brackets with the variable name ?
ruby
variables
1 Voto
1 Resposta
4th May 2017, 1:04 AM
Luis Oscar Salazar Gómez
Why u guys are here @Python , Im choose python coz idnt Like " {" curly braces ☺️
programming
python
scripting
scripting-languages
1 Voto
3 Respostas
7th Jul 2018, 4:31 PM
Midhun
Is java whitespace/indentation sensitive like python or solely based on curly braces and semi colon endlines?
java
0 Voto
2 Respostas
26th Apr 2020, 7:32 PM
SwapD
Is it compulsory to insert all the curly brackets in a piece of code. And why. And when
if-statements
java
1 Voto
3 Respostas
25th Dec 2017, 9:36 PM
James
Why in this code we use semicolon after curly braces?? union Courses { char WebSite[50]; char Subject[50]; int Price; };
.
1 Voto
2 Respostas
12th Apr 2020, 1:10 PM
Amirtha K
Are there any priority given to complex Mathematical operation in Python3 ? Suppose we have parentheses and curly parentheses
pyhton3
0 Voto
2 Respostas
29th Sep 2018, 10:42 PM
Aditya
Why are there so many curly braces in the nested if 'try it yourself'. Can't the code be completed with a single pair of them?
nested-if
0 Voto
8 Respostas
19th Jan 2019, 10:57 AM
Haider Rassiwala
Is it possible to have, in an array, in the curly braces, less than the specified integers in the square braces?
arrays
0 Voto
3 Respostas
17th Jul 2019, 5:42 AM
It's *Aandrew* Banu
Is it possible to leave out curly braces in the else statement as well if only one line of code is supposed to be executed?
c#
else-statements
if-statements
1 Voto
9 Respostas
26th Apr 2016, 7:37 PM
Th3Muff1n
Why?,when ++i is inside the bracket then it only print the expected value. But when ++i is in curly bracket it prints unexpected
java
0 Voto
5 Respostas
21st Jun 2020, 8:09 AM
Amit
I found definition for the block "A block is a sequence of zero or more statements enclosed by curly braces"but I don't get it
c++
2 Votos
6 Respostas
1st Jan 2018, 8:03 AM
Taha Elhasseen Abdelrahman
Anyone please comment the closing curly braces in . Its not in my phone and i stuck at a point where i need that please thanks
c#
css
python
0 Voto
8 Respostas
7th Jun 2017, 11:46 AM
Kishan Singh
Why when you change the order of curly braces affects the result of if and else statement? Check the code below and explain why
else-statements
if-statements
1 Voto
2 Respostas
14th Aug 2019, 10:52 PM
DataStream Cowboy
I hope u noticed the semi-colon (;) at the end of each case and at the closing curly brackect };
switch
-4 Votos
2 Respostas
19th Jun 2021, 1:06 PM
Omar Juma
After you put the condition, why do people open up these curly brackets { } If u don't have to even put it..?
else-statements
if-statements
2 Votos
2 Respostas
17th Dec 2017, 2:02 PM
Eli Bitton
code::blocks question
braces
c++
code::blocks
curly
0 Voto
1 Resposta
5th Oct 2018, 5:10 PM
Daniel Cooper
How can class Loading be on its own and not within the curly braces of Main class. It has to use extend(of inheritance).But
class
inheritance
java
0 Voto
2 Respostas
26th May 2022, 2:49 PM
We Doru
Is there a reason the code after int main() doesn't start right below the curly bracket but is rather a few spaces infront?
variables
1 Voto
2 Respostas
26th Jan 2018, 4:43 PM
3ck
is this info correct?
braces
c++
condition
curly
0 Voto
1 Resposta
26th Oct 2017, 4:44 PM
shobhit
is it necessary to put the curly Braces { } after the if() and else? Coz in the code below i didnt put braces and it worked well
c++
help!
1 Voto
4 Respostas
8th Sep 2017, 8:23 AM
RiGeL
what is the missing syntax in my codes that will make my codes run in alternative way rather than in curly brace syntax ?
alternative
newbie
php
syntax
0 Voto
2 Respostas
16th Jul 2017, 4:40 AM
Patrick Estaron Magayon
Can anyone help me with curly brackets and semi colans ? I just fail to write a program because i dont know where to insert them
idjs
0 Voto
2 Respostas
21st Oct 2017, 1:38 PM
Manas Laud
Thanks to the lack of parenthesis and curly braces, the code is always much clearer and more readable than C or C++ code! Example: C++ vs Python if (x>0) { std::cout << "x is positive." << std::endl; } if x>0: print("x is positive.") #Python4president
c++
comments
if-statements
python
1 Voto
6 Respostas
15th Jan 2017, 10:11 AM
Diego
in the following why the code num=num+1;can't be applied just after while loop in the beginning of curly braces? #include <iostream> using namespace std; int main() { int num = 1; while (num < 6) { cout << "Number: " << num << endl; num = num + 1; } return 0; }
c++
loops
0 Voto
7 Respostas
22nd Sep 2016, 2:48 PM
Prabhat Chandra Dwivedi
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
Faça uma pergunta
< Anterior
1
2
Próximo >
Quente hoje
What's the best way to learn anything
1 Votes
How can I improve my Authenticator App built with HTML, CSS, and JavaScript?
0 Votes
Most asked!
1 Votes
Malloc vs calloc | memory not initialized
1 Votes
help!
0 Votes
Is react js enough for frontend??
0 Votes
Mini project ideas for final years
0 Votes
why this platform not providing mysql compiler for creating code bits?
0 Votes
Please guys could smw do this for me ?
0 Votes