ansi

Character Encoding

My text editor allows me to code in several different character formats Ansi, UTF-8, UTF-8(No BOM), UTF-16LE, and UTF-16BE. What is the difference between them? What is commonly regarded as the best format (I'm using Python if that makes a diffrence)? ...

C++ project type: unicode vs multi-byte; pros and cons

I'm wondering what the Stack Overflow community thinks when it comes to creating a project (thinking primarily c++ here) with a unicode or a multi-byte character set. Are there pros to going Unicode straight from the start, implying all your strings will be in wide format? Are there performance issues / larger memory requirements becau...

i am having problem with c code?

hello i am using windows and ANSI-c , i have an application that sniffs data from network card then decodes it and sent to and other application via UDP. the problem is my application starts with fine working but after some time its all variables int, float and strings are corrupted i have checked it many times but can't be able to dig o...

Syncronize system clock with UTC time using c uder Window OS

I have UTC time which is coming from UDP, I have a program to calculate Day and Time of UTC, how can I set my system clock at that day and time, kindly give me some direction so that I can make it possible. I am using window OS. ...

File Reading issue in c++

I have the following program, int iIndex=0; char cPort[5]={"\0"}; char cFileChar; fopen_s(&fFile,"c:\\Config\\FileName.txt","r"); if(fFile !=0) { cFileChar = getc(fFile); while (cFileChar!= EOF) { cPort[iIndex]=cFileChar; iIndex++; cFileChar = getc(fFile); } iDIPort=atoi(cPort); } in the file I have 32000, but when...

using ansi-c on windows platform can i get time of system upto milliseconds accuracy?

hello i need to get the millisecond accuracy i take a look on this question but i am working on windows it gives linking errors for POSIX functions is there any solution help required it will be very good if i can get UTC time since 1970 with milliseconds precision, thanx in advance. ...

will the binary files of ansi c Application can run of iPhone??

I have some applications that are written in ANSI C. Will I be able to run the binary files of those apps on the iPhone? If not directly, is there any other useful method to do so? I don't want to rewrite the applications. ...

Where can I get the ANSI or ISO standards for the RDBMS queries ?

I want to write some queries which can work in almost all the databases without any SQLExceptions. So, where can I get the ANSI standards to write the queries ? ...

PHP image_jpeg dont' work if file is UTF-8, works if it's ANSI

Hi. I use this class to crop, resize my image: http://www.phpclasses.org/package/4268-PHP-Resize-crop-rotate-flip-flop-and-grey-images.html It uses GD. The problem is that I for example do this: $img = new ImageTransform; $img->view('resize', 'foo.jpg', '500x400', true); // true argument is $cache = true Now I can just point <img src=...

SQL statement to select the value of the latest version of data based on the latest date

I have a simple query and am wondering if it could be more elegantly coded. The final solution has to be ansi-compliant. I need to fetch the latest value from a table based on date and version. A sample would explain more clearly: declare @t table (id int, due_date smalldatetime, version int, value nvarchar(10)) insert into @t select ...

Factory pattern implementation using ANSI C

Can anyone point me to a reference on how to implement the factory pattern using ANSI C? If more patterns are covered to that would just be a bonus. Doing this in C++ i trivial for me, but since C does not have classes and polymorphism I'm not quite sure how to do it. I was thinking about having a "base" struct with all the common data t...

Forgin/Buiilding TCP packets in ANSI C

How do I, without using third-party tools, craft TCP (and even UDP for that matter) packets in ANSI C? I want to be able to set all option flags, source ip address etc. So full control. Haven't found any good text about it online. Or I'm just using the wrong search criteria. ...

How can I detect one or combination of strokes of keys in C?

How can I detect one or combination of strokes of keys in ANSI C and/or with Win32 SDK? For example: how can I detect CTRL+ALT+DEL was pressed? Please provide me with some source code or any web-link. Please note that, I am using polling mechanism, not event. I need to do it in win32 console mode. ...

HAT-trie in ANSI C implementation?

Hello. I am looking for ANSI C HAT-trie implementation released under some free license. I have not found one. Can you point me to some standalone implementation or a program that uses HAT-tries to get at least slight idea how to implement it the roght way, please? The original paper on HAT-trie can be found here: http://crpit.com/conf...

Ruby Rspec outputs literal escape characters on windows

Hi all, I'm following the ruby on rails tutorial: http://railstutorial.org/chapters/static-pages#top I'm up to using rspec. Having installed the win32console gem, it outputs gibberish in the console, i assume it is outputting the ansi colour change codes: >rspec spec/ ?[31mF?[0m?[31mF?[0m Finished in 0.34376 seconds ?[31m2 examples, ...

C: convert double to float, preserving decimal point precision

hi, i wanted to convert double to float in C, but wanted to preserve the decimal point exactly as possible without any changes... for example, let's say i have double d = 0.1108; double dd = 639728.170000; double ddd = 345.2345678 now correct me if i am wrong, i know that floating point precision is about 5 numbers after the...

Console colors (Windows)

Is it possible to print out things in different colors in Python for Windows? I already enabled ANSI.sys, but this does not seam to work. I want to be able to print one line in red, and the next in green, etc. ...

How can I return an array of strings in an ANSI C program?

How can I return an array of strings in an ANSI C program? For example: #include<stdio.h> #define SIZE 10 char ** ReturnStringArray() { //How to do this? } main() { int i=0; //How to do here??? char str ** = ReturnStringArray(); for(i=0 ; i<SIZE ; i++) { printf("%s", str[i]); } } ...

How to set env variable and start a process in C

Can anybody please help me showing how to set an environment variable and start a process in ANSI C for Windows? If possible I want to avoid using any windows API for this. ...

Database Engines and ANSI SQL Compliance

I've been searching for half an hour and can't find any resources stating what level of the SQL ANSI standard is supported on various database engines. It looks like some level of support is provided by most engines, but I'd like to know exactly what level is officially supported. I'm primarily interested in MySQL, PostgreSQL, SQL Serv...