Forum: Linux Servers and Apache Jun 10th, 2009 |
| Replies: 0 Views: 763 now i'm on a network where the administrator uses squid server to block by keyword, so a whole lot of websites and file extensions are blocked, now using a proxy is a simple solution, but it is a... |
Forum: Domains and DNS Jun 10th, 2009 |
| Replies: 1 Views: 427 i know that a website can be accessed through its name/url and also its unique ip/dns address. especially in a scenario of keyword blocking, a blocked website can be accessed through its ip address.... |
Forum: C++ Apr 28th, 2009 |
| Replies: 6 Views: 694 ok, thats funny, just correct a typo in my last post at line 52:
cout<<"\nthe squared digit length of n1 is\n"
it is actually
cout<<"\nthe squared digit length of n2 is\n" |
Forum: C++ Apr 27th, 2009 |
| Replies: 6 Views: 694 okay, i've refined my code, my first code is wrong, i made it in a hurry, the code below is simple, perfect and complete and uses your variable names
#include <conio>
#include <iostream>
#include... |
Forum: C++ Apr 27th, 2009 |
| Replies: 6 Views: 694 i have quickly read it and i think this is what you want
#include <conio>
#inlcude <iostream>
void main()
{
char a[50];
int b,c,r,s,t,i=0,h,z;
///////////////////////////////////// a part... |
Forum: C++ Apr 24th, 2009 |
| Replies: 2 Views: 215 i'm trying to make this program which simulates a printing queue, a very basic level program that implements priority queues. i'm stuck in the last function, i.e. the simulate function, there's that... |