Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas Pemrogaman Komputer 3_2

Snippet info

Language

Cpp

Visibility

public

Author

fadhlanr

Created

2025-11-15T01:29:09.578951Z

Updated

2025-12-13T14:39:54.000441Z

#include <stdio.h>

int main() {
    char nim[10], nama[30];
    printf("INPUT DATA MAHASISWA\n");
    printf("NIM \t: \n"); scanf("%s", &nim);
    printf("NAMA \t: "); gets(nama);
    
    //menampilkan
    printf("\nNIM \t: %s", nim);
    printf("\nNAMA \t: %s", nama);
    return 0;
}
    //Fadhlan Robbi
    //3420240001
INFO