Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Expressions Program in C Language
WhatsApp
Krishna Rajput Singh
May 20
2015
1.7
k
0
1
code snipt c exp.rar
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int
main(
int
argc,
char
*argv[])
{
int
x=7,y=-7,z=11,w=-11,s=9,t=10;
x+=(y-=(z*=w/=(s%=t)));
printf(
"x=%d,y=%d,z=%d,w=%d,s=%d,t=%d\n"
,x,y,z,w,s,t);
t+=s-=w*=z*=y%=x;
printf(
"x=%d,y=%d,z=%d,w=%d,s=%d,t=%d\n"
,x,y,z,w,s,t);
return
0;
getch();
}
C Language Program
Expression in C Language
Up Next
Expressions Program in C Language