Hello,

Algorithm: Generating Bitstream (for e.g., 0`s and 1`s)

While compiling this program its showing compiling error. Looking over my program , point out whats wrong in the following codes.

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int bin_verify(char[]);
int main()
{
char bin1[33],bin2[33],result[33];
int len1, lens2,check;...