TCC is a tiny C compiler which enables you to use C as scripting language.
Questions tagged [tcc]
117 questions
0
votes
0 answers
Tiny CC gotoxy in command prompt
I'd like to develop character based program with Tiny C Compiler.
The putc works fine, but I want to print the character in a specific place on the character screen. Like in turbo pascal with gotoxy. Is there such a possibility?
I'm looking through…

user3459444
- 21
- 3
0
votes
1 answer
strsafe.h error: ',' expected (got "dwFlags")
Question: where do I get and how do I make strsafe.h work with Tiny C Compiler by Bellard.
Here is my Journey with MinGW header files, which is unsuccessful,
as I was unable to make strsafe.h headers of MinGW work with Tiny C Compiler.
The…

user3789797
- 450
- 6
- 15
0
votes
0 answers
android app development with ndk and tcc possible?
Is it possible to create android apps with the help of tcc (tiny C compiler) ?
Normal ndk APK's looks simple zip to me.
There were only some signatures under /META-INF folder, dynamic *.so libraries under /lib, AndroidManifest.xml and…

Gray Programmerz
- 479
- 1
- 5
- 22
0
votes
1 answer
How to send Taleo connect client(TCC) export file to s3
I was working in TCC in Windows 10, with Recruiting 17.4 requisition export. I am able to see the files in location.
I wanted to upload/send files directly to S3 bucket. Is there any option in TCC software or TCC Cloud for the same. I don't to use…

aniruddha
- 689
- 8
- 29
0
votes
1 answer
TCC - isNull producing inconsistent results
I'm working on a report through TCC that gives me a count of applicants by requisition with various filters applied using a complex projections. One of the complex projections counts a list of Applicants where a specific UDF on their candidate…

Michael H.
- 3
- 2
0
votes
1 answer
Using TCC compiler with Sublime text 3 gives Error
I like Sublime a lot and wish to execute my program directly from the editor. I've done it with gcc, but now want to use tcc.
I can't find a build system for tcc so I took a C++ build system. There is a problem that it can't find the file I want to…

Lovish Garg
- 79
- 2
- 8
0
votes
1 answer
Does TCC allow for the creation of static libraries?
I have been working with the Tiny C Compiler and am trying to create a static library. I have search the TCC documentation but have not found anything about creating a static library. Is creating a static library possible with TCC?

NikolaPi
- 169
- 1
- 9
0
votes
0 answers
How can I fix a 'tcc: library not found' error?
I am taking CS50, and since I am now using linux, I was hoping that I could do my coding for the CS50 problem sets on my local computer, instead of on the cloud9 ide. So I cloned the CS50 library from here and installed it, but when I try to compile…

AJ-Williams1
- 126
- 1
- 8
0
votes
1 answer
Taleo Enterprise Edition - Hiring Status History
Either using TCC or by API, I would like to get the below details of a Candidate and Job Combination :
What is the list of Hiring Statuses a Candidate has gone through so far (Step, Status)
Also the update datetime of each such Step, Status
This…
0
votes
3 answers
Gcc compiler C string assignment issue
I wrote this code because I'm having a similar problem in a larger program I'm writing. For all I know the problem is the same so I made this small example.
#include
typedef struct
{
int x;
char * val;
}my_struct;
int main()
{
…

Tnelsond
- 45
- 7
0
votes
0 answers
C: Invalid results when using few pow functions in the same expression
For some unknown to me reason this code produces different results.
#include
#include
main() {
double y, y2;
y = pow(2.0, 1.0) * pow(2.0, 1.0) * pow(2.0, 1.0);
y2 = pow(2.0, 3.0);
printf("%lf\n", y); //…
0
votes
1 answer
matching string pattern flat file in C
Just to have a look a name in a list, when match, the value is discounted.
I tried to code, but the matching technique is fail. Like I try to find "John", but it match with "John" and "Johnny", whether the expected match is just "John" (case is not…

Agung Sudrajat
- 120
- 9
0
votes
1 answer
How to import candidate-requisition with match operation in tcc?
I want to import a candidate-requisition using match operation, but I don't know how, couldn't find match operation guidance. anyone have any idea?

Grace Yang
- 37
- 8
0
votes
2 answers
How to fix "Access Violation" error when returning PyObject from C function using PyTCC library
I am using a Python library that wraps LibTCC called PyTCC.
I am experimenting with ways to JIT compile code in Python. Problem is, when calling a function I can return normal C data types correctly but I get an "Access Violation" error when…

Samuel Wilder
- 28
- 7
0
votes
0 answers
TCC Cannot Find Windows API Functions But GCC Can
I am writing a program that access registry keys using Windows APIs. I'm trying to compile my program with TCC but it's throwing an "undefined symbol" error regarding the functions I'm calling from the Windows APIs. I decided to try and compile it…

TimeLoad
- 306
- 1
- 8