Click here to Skip to main content
15,891,513 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
give brief description about boolean, operator,&operator
Posted

Java
boolean smartGuy = (readingBook || usingGoogle) && !askingSillyQuestions;


brief enough?

:)
 
Share this answer
 
v2
// it's abt the boolean operator
boolean continue=true;
while(continue)
printf("it continues in the loop")


// it's abt operator

int a=5;
int b=6;
int c;

c=a+b; //here '+' is the operator adding the operands

// it's abt &operator

int A=5;
int B=&A;// b value is address of a
printf("A and B value:%d %d",a,b);
/*
here the output will be A and B value:5 5675
*/
 
Share this answer
 
Everything you need is here[^]

RTFM.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900