Answers for "size of structure in c"

C
2

terminal size in c

#include <sys/ioctl.h>
#include <stdio.h>
#include <unistd.h>

int main (int argc, char **argv)
{
    struct winsize w;
    ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);

    printf ("lines %d\n", w.ws_row);
    printf ("columns %d\n", w.ws_col);
    return 0;  // make sure your main returns int
}
Posted by: Guest on December-21-2020
20

size of an array c

int a[20];
int length;
length = sizeof(a) / sizeof(int);
Posted by: Guest on October-25-2020

Code answers related to "C"

Browse Popular Code Answers by Language