Posts by mwbit • 3 points
2 posts
-
0
votes0
answers46
viewsQ: Is it possible to disable transaction log in Sybase Anywhere 9?
It is possible to disable transaction log on Sybase Anywhere 9. Disable for a specific table?
-
0
votes2
answers276
viewsA: Error when trying to pass a struct by C reference?
Analyzing your code, I suggest: #include "stdio.h" #include "stdlib.h" struct aluno{ char aluno[80]; int mat; float p1,p2,p3; } joao; void imprime(struct aluno *a); int main() { printf("Digite o…