Posts by Garota de Programas • 57 points
3 posts
-
-2
votes2
answers68
viewsQ: Scanf does not work even forcing to ignore the spaces
I’m trying to make a simple program to start messing with C. #include <stdio.h> #include <stdlib.h> #include <locale.h> int main(void) { char nome[100]; char dataNascimento[10];…
-
1
votes2
answers200
viewsA: What’s the opposite of . equals in C#?
I found the answer I was looking for. There is no method that is opposite to .Equal. The name of what I was looking for was Outer Left Join. The challenge was that I wanted to use only the LINQ…
-
5
votes2
answers200
viewsQ: What’s the opposite of . equals in C#?
I’m doing a left Join where I want to pick up just what’s on the left table and there’s no right one. I’m using LINQ and Entityframework. I made a code that takes the similarities, follows below:…