What is the BigO of this program?
#include <stdio.h> int main() { char data[] = {'a','b','c','d','e','f','g','h'}; for(int i = 0; i < sizeof(data); i++) { if(data[i] == 'e') { printf("e is found"); break; } } }