i need help to draw hollow square . i am done making completely filled square . anyone pls ?
maryamalik 0 Newbie Poster
Recommended Answers
Jump to PostI can do it with a pencil
Well, if the "completely filled square" is already done, then the hollow square could be done with an eraser!
Jump to PostHere's a hollow square. I think?
#include <iostream> int main(int argc, char** argv) { unsigned int count = 12; for (size_t i = 0; i < count; ++i) { if ( i == 0 ) { std::cout << std::string (count, 'x') << std::endl; continue; } if ( …
All 5 Replies
JorgeM 958 Problem Solver Team Colleague Featured Poster

Warrens80
mike_2000_17 2,669 21st Century Viking Team Colleague Featured Poster
maryamalik 0 Newbie Poster
gerard4143 371 Nearly a Posting Maven
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.