388 views
0 votes
0 votes
for every j != i in {0,....,n-1} 

 

 

 

 

is it like for j=0 to n-1; j !=i ; ++j

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
1
vijju532 asked Jul 18, 2018
351 views
#include<iostream>using namespace std;int main(){ int a[] = {10,20,30,40,50}; cout<<(*(&a+1)-a); return 0;}how th o/p is 5 ??
0 votes
0 votes
3 answers
2
sumit kumar asked Nov 10, 2014
896 views
try to print this in one loop itself.i have already done this in two loops(one nested into another).so please try to do in one loop itself.12 43 6 94 8 12 165 ...
0 votes
0 votes
1 answer
4
`JEET asked Jan 20, 2019
353 views
Output is 7.But can someone justify, how?#include <stdio.h int f(int a, int b) { printf("%d", a + b); return 0; } int main() { f((2, 3), 4); return 0; }