Skip to main content
2 votes
0 answers
48 views

I'm working on writing a C compiler, as a side project. My compiler emits a .asm file, which I run through ml64.exe and linker to produce an executable. If my input C file has a function definition ...
knutaf's user avatar
  • 113
2 votes
1 answer
79 views

I'm getting the error: label or instruction expected at start of line in the .data section when defining a string made up of bytes: st2 db "num3>num1,2", 0xA, 0xD I looked at the ...
Keane Lakwey's user avatar
0 votes
2 answers
129 views

In a C language library I wrote, I found most of the operations are too verbose, so I tried to make it terse - through use of macros and by reserving the _ identifier. As I understand, identifiers ...
DannyNiu's user avatar
  • 1,671
1 vote
1 answer
201 views

Per the C standard section 7.1.3 Reserved identifiers All identifiers that begin with an underscore are always reserved for use as identifiers with file scope in both the ordinary and tag name spaces....
Eugene Sh.'s user avatar
  • 18.7k
-1 votes
1 answer
123 views

I'd like to create an enum (or class, or struct) named Type in one of my objects. This object name cannot be typed normally, as it "conflict with the 'foo.Type' expression". However, like ...
pkamb's user avatar
  • 35.5k
0 votes
0 answers
44 views

This is my error message: {"requestId":"b29fdb37-816d-4cde-b8ee-a9181f27a7a4","errorCode":"InstanceReservedWordNotAllowedInEntryKey","errorMessage":&...
aca1803's user avatar
  • 21
2 votes
1 answer
138 views

Here is a very simple Scheme macro that works, running on MIT/GNU Scheme 12.1: 1 ]=> (define-syntax example (syntax-rules () ((_) 'ok))) ;Value: example 1 ]=> (example) ;...
Richard's user avatar
  • 23
0 votes
0 answers
35 views

I am not SQL expert therefore am scratching my head why this query would not work in MySQL-community-server 8.0 but it works absolutely fine in MySQL 5.6. I have recently migrated from mysql 5.6 to ...
user2107349's user avatar
0 votes
0 answers
105 views

I have a remote connection into a mysql database from Redshift. Mysql table has a column year_month which is a reserved word in mysql and since this table is already populated and applications are ...
Shanthi's user avatar
  • 39
0 votes
0 answers
35 views

I have Document Term Matrix turned data frame with 352 observations of 1342 variables. Now when I try to run a randomforest model I get the error: model <- randomForest(labels~ ., data = train_df, ...
Salman Virani's user avatar
1 vote
1 answer
275 views

At [over.literal] I read, in the list of examples, that double operator""_Bq(long double); is valid, whereas double operator"" _Bq(long double); is ill-formed, which is ...
Enlico's user avatar
  • 30.3k
0 votes
1 answer
78 views

Which one of these three statements is the best one to enable the keyword LIMIT? SET OPTION RESERVED_KEYWORDS = 'LIMIT'; SET OPTION PUBLIC reserved_keywords = 'LIMIT'; SET OPTION PUBLIC....
sid_com's user avatar
  • 25.4k
0 votes
1 answer
457 views

I am using this code to exit my program: exit(){ clear exit 0 } This clears the screen, but does not exit the script and just leaves a blinking caret in the terminal. Is it possible ...
nobody65534's user avatar
2 votes
1 answer
553 views

I have run into a scenario where a customer may have a nullable guid for me to compare to in my database. I could go ahead and rewrite my call stack to make the object nullable, but I also don't want ...
Sidney's user avatar
  • 730
0 votes
1 answer
184 views

Currently I use Google Sheets as a database, which has more than 1000 columns from A to AGH. If the query contains column BY or column OR, the result will be null. How can I avoid that column names ...
Harri Uusix's user avatar

15 30 50 per page
1
2 3 4 5
24