Top C C++ Errors Interview Questions :: ALLInterview.com http://www.allinterview.com Top C C++ Errors Interview Questions en-us loop1: { x=i&lt;n?(i++):0; printf(&quot;%d&quot;,i); exit(x); http://www.allinterview.com/showanswers/58234.html Error- misplaced continue. To generate the series 1+3+5+7+... using C program http://www.allinterview.com/showanswers/71183.html #include<stdio.h> #include<conio.h> void main() { int n,i=1,sum=0; clrscr(); printf("enter the value for n:"); scanf("%d",&n); while(i<=n) { sum=sum+i; i=i+2; } printf("the series is =%d") void main() { int i=1; printf(&quot;%d%d%d&quot;,i,++i,i++); } Ca http://www.allinterview.com/showanswers/72737.html 3 3 1 who was the present cheif governor of reserve bank of india http://www.allinterview.com/showanswers/73167.html Mr.Subbarao void main() { for(int i=0;i&lt;5;i++); printf(&quot;%d&quot;,i); } http://www.allinterview.com/showanswers/72734.html Answer is 5.......... printy(a=3,a=2) http://www.allinterview.com/showanswers/69263.html if we want to show result as a=3,a=2..then it ll be written as printf("a=3,a=2"); Given an int variable n that has been initialized to a positive val http://www.allinterview.com/showanswers/73797.html total=0; k=1; do { total=total+k*k*k; k++; }while(k<=n) write a profram for selection sort whats the error in it? http://www.allinterview.com/showanswers/72524.html //program for selection sort #include<stdio.h> #include<conio.h> #define MX 100 void selection(int [], int); void selection(int a[],int n) { int minindx,t; int i,j; for(i=0;i<n-1;i++) { minindx=i; for(j=i+1;i<n;j Given an int variable n that has already been declared and initiali http://www.allinterview.com/showanswers/73796.html //1st method.. there is no use of j.as explained below int j,n=psitive value; do { cout<<"*"; n--; }while(n!=0); //2nd we can use j.. int j=0; do { cout<<"*"; j++; }while(j!=n); UINT i,j; i = j = 0; i = ( i++ &gt; ++j ) ? i++ : i--; explain pl http://www.allinterview.com/showanswers/74123.html (i++ > j++) gives 0 because 0 > 0 is false so it return 0. before returning 0 i is 1 ,but it is overwrite by 0. In the Conditional operator false means ,it executes i++; so i is 1. Given that two int variables, total and amount , have been declare http://www.allinterview.com/showanswers/73794.html Given that two int variables, total and amount, have been declared, w http://www.allinterview.com/showanswers/73795.html which typw of errors ? &amp; how to solve it ? http://www.allinterview.com/showanswers/69439.html wap for bubble sort http://www.allinterview.com/showanswers/72525.html What is probability to guarantee that the task a programmer is going http://www.allinterview.com/showanswers/72596.html