fork(1) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #define linhas 4
  5. #define colunas 2
  6.  
  7. void teste1(float * t1, int totalLinhas, int totalColunas) {
  8. for (int i = 0; i < totalLinhas* totalColunas; i++) {
  9. printf("%f\t", *((t1 + (i % totalLinhas) * totalColunas) + (i / totalLinhas)));
  10. }
  11. }
  12. int main() {
  13. float t1[linhas][colunas];
  14. for (int i = 0; i < linhas * colunas; i++) {
  15. t1[i % linhas][i / linhas] = i + 1;
  16. }
  17. teste1((float *)t1, linhas, colunas);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 2252KB
stdin
Standard input is empty
stdout
1.000000	2.000000	3.000000	4.000000	5.000000	6.000000	7.000000	8.000000