“C SIZEOF Operator” Kode Jawaban

C SIZEOF Operator

#include <stdio.h>
int main()
{
    int a;
    float b;
    double c;
    char d;
    printf("Size of int=%lu bytes\n",sizeof(a));
    printf("Size of float=%lu bytes\n",sizeof(b));
    printf("Size of double=%lu bytes\n",sizeof(c));
    printf("Size of char=%lu byte\n",sizeof(d));

    return 0;
}
SAMER SAEID

Ukuran operator dalam bahasa C

printf(“size of int in byte : %d “,sizeof(int));
Energetic Echidna

Jawaban yang mirip dengan “C SIZEOF Operator”

Pertanyaan yang mirip dengan “C SIZEOF Operator”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya