Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
Are global variables static in c?
What is the proper way of these job Tell me about there full work
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What is double pointer in c?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
will u give me old quesrion papers for aptitude for L & t info tech?
Write a program which returns the first non repetitive character in the string?
Explain the difference between strcpy() and memcpy() function?
What is a global variable in c?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??