57 interview questions 547610321312Write a program to print the above sequence.Logical Hint: Use bitwise operator.Program:int main(){int i;for(i=0;i<10;i++){printf("%d",i^5);}return 0;} Share this Share on FacebookTweet on TwitterPlus on Google+ Related PostsSome Interview Questionsprintf %d57