Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 290 Bytes

README.md

File metadata and controls

18 lines (17 loc) · 290 Bytes

Camera2Zbar

camera2结合zbar实现二维码识别

#include <stdio.h>
#include <stdlib.h>
typedef struct Animal{
    int height;
    int weight;
    char * name;
}animal;

int main(){
    animal dog;
    dog.height = 20;
    printf("dog.height=%d\n", dog.height);
    return 0;
}