+ 5
I get ']' This in last of output of code to print A-Z using ASCII value plz check code and tell me where it is wrong.
#include<iostream> using namespace std; int main() { int i; for(i=65;i<=91;i++) { cout<<(char)i; } return 0; }
2 odpowiedzi
+ 8
http://www.asciitable.com/mobile/
you are going too far.. stop at 90
+ 3
thanx bro both logic helped 😃