Recent questions tagged programming-in-c

2 votes
1 answer
42
#include<stdio.h>int main() {int i;for(i =-1;i<sizeof(i);i++)printf("%d",i);}The output of the code is didn't enter to the loop and prints nothing.Can anyone explain
1 votes
1 answer
44
How is the address written for 3-dimensional arrays?In some answers, I saw (row, column, frame) and in others, it was (frame, row, column) Which one to follow??Also, how ...