Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

info about give program below

Status
Not open for further replies.
the output should be
8 1 8 8
Code:
printf("%d\t",a=b);
assigns a the value of b, the result of the expression 8 is printed
Code:
printf("%d\t",a==b);
compares a with b and as both values are 8 the result is 1 (true)
Code:
printf("%d 	%d\n",a,b);
prints a and b both have the value 8
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top