User profile: ninjz98

User info
User name:ninjz98
Old user name:talal02
Name:C++ Beginner
Location:USA
Bio:A Future Programmer!........
History
Joined:
Number of posts:13
Latest posts:

Why Glut Post Red Display isnt working?
#Question How to use GlutPOstRedisplay to render screen again and again... #My Workings I worked on ...

Pattern
I want to print output like this using loops only Enter the number of rows: 5 5 4 3 2 1 0 4 5 4 3...

How to find maximum value
[code] int a,b,c,d,e,max; cin>>a; max=a; cin>>b; if(b>max) max=b; cin>>c; if(c>max) max=c; cin>>d; i...

How to find maximum value
I have to do this only using loops. That's challenging...

How to find maximum value
If a user inputs five values... How to find maximum value between those 5? [code] cin>>a>>b>>c...