Hi guys,
I just got a headache trying to work with some files with .wlc extesions. I would like to know which applications open such files and how can i access the content.
URGENT PLEASE.
Hi guys,
I just got a headache trying to work with some files with .wlc extesions. I would like to know which applications open such files and how can i access the content.
URGENT PLEASE.
what's a wlc file? Is it power word?
If yes: It's just a textfile, so open it like this:
#include <iostream>
#include <string>
#include <fstream>
int main()
{
std::ifstream in;
std::string line;
in.open("c:\\input.txt");
// check if file is open here
// and do something with it's contents
return 0;
}
It seems WLC is a proprietary file format. Buy WISCO Computing Word Power and enjoy...
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.