python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Can't initialize a NULL char array?
I have to inizialize a char array [DIM_MAX] to a null value in order to pass it to another function. Before passing it to this function, I am trying to print it as a local variable in order to underst...
kevin94
Votes: 0
Answers: 1
Sum with nulls "not working" in SQL Server / Azure
I'm trying to average a set of columns and exclude rows with zero from the denominator by using a case statement within an AVG() function. I read that avg() excludes NULL results so am using the case ...
onajourney
Votes: 0
Answers: 1
Is there a way to hide nulls in an Altair chart?
I don't want the null values to show on my Altair chart. Is there any way to do this without removing them from my data before charting them?
I have a data frame:
d7_rent_own d8a_moving
0 ...
midnightradi0
Votes: 0
Answers: 1
IllegalArgumentException not sure if I wrote the array right
gamePanel gp;
Tile[] tile;
public tileManager(gamePanel gp){
this.gp = gp;
tile = new Tile[10]; // this means we're going to create 10 types of tiles (water, grass, water...

Martin Parunev
Votes: 0
Answers: 0