Dataset Viewer
Auto-converted to Parquet Duplicate
p_id
stringlengths
6
6
language
stringclasses
10 values
status
stringclasses
2 values
code
stringlengths
1
563k
prompt
stringlengths
113
563k
answer
stringclasses
2 values
p00000
C
Compile Error
#include <stdio.h> int main(void){ for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(void){ for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <iostream> using namespace std; int main() { int a,b,c,d; a = 1; b = 1; d = 1; do { c = a*b; cout << a << "x" << b << "=" << c << "\n\n"; b++; if (b == 11) { b = 1; a++; } d++; } while (d <= 100); }
Here is a piece of code written in C: #include <iostream> using namespace std; int main() { int a,b,c,d; a = 1; b = 1; d = 1; do { c = a*b; cout << a << "x" << b << "=" << c << "\n\n"; b++; if (b == 11) { b = 1; a++; } d++; ...
No
p00000
C
Compile Error
#include <iostream> using namespace std; int main() { int a,b,c,d; a = 1; b = 1; d = 1; do { c = a*b; cout << a << "x" << b << "=" << c << "\n"; b++; if (b == 11) { b = 1; a++; } d++; } while (d <= 100); }
Here is a piece of code written in C: #include <iostream> using namespace std; int main() { int a,b,c,d; a = 1; b = 1; d = 1; do { c = a*b; cout << a << "x" << b << "=" << c << "\n"; b++; if (b == 11) { b = 1; a++; } d++; ...
No
p00000
C
Compile Error
#include<stdio.h> int main() { int i; for(i=1;i<=9;i++) { printf("%dx%d=%d\n,i,i,i*i); } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main() { int i; for(i=1;i<=9;i++) { printf("%dx%d=%d\n,i,i,i*i); } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main(void) { int i; int j; for(i = 1; i < 10; i++) { for(j = 1; j < 10; j++) { print("%d x %d = %d", i, j, i*j); } } }
Here is a piece of code written in C: #include <stdio.h> int main(void) { int i; int j; for(i = 1; i < 10; i++) { for(j = 1; j < 10; j++) { print("%d x %d = %d", i, j, i*j); } } } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main() { for(int i=1; i<10; i++) for(int j=1; j<10 ; j++) printf("%dx%d=%d\n",i,j,i*j); return 0; }
Here is a piece of code written in C: #include<stdio.h> int main() { for(int i=1; i<10; i++) for(int j=1; j<10 ; j++) printf("%dx%d=%d\n",i,j,i*j); return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <vector> using namespace std; const double eps=1e-8; int dcmp(double x) { if(fabs(x)<eps) return 0; else return x<0?-1:1; } struct point { double x,y; point(double x=0,double y=0):x(x),y(y){} }; point operator+(point a,point b){retur...
Here is a piece of code written in C: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <vector> using namespace std; const double eps=1e-8; int dcmp(double x) { if(fabs(x)<eps) return 0; else return x<0?-1:1; } struct point { double x,y; point(double x=0,double y=0):x(x),y(y){} };...
No
p00000
C
Compile Error
print("1x1=1")
Here is a piece of code written in C: print("1x1=1") Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
test
Here is a piece of code written in C: test Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> #include<conio.h> int main(void){ int a=1; int i,j; for( i=1;i<10;i++){ for(j=1;j<10;j++){ printf("%d * %d= %d \n",i,j,i*j); } } getch(); return 0; }
Here is a piece of code written in C: #include<stdio.h> #include<conio.h> int main(void){ int a=1; int i,j; for( i=1;i<10;i++){ for(j=1;j<10;j++){ printf("%d * %d= %d \n",i,j,i*j); } } getch(); return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#pragma comment(linker, "/STACK:102400000,102400000") #include <cstdio> #include <queue> #include <vector> #include <cstring> #include <iostream> #include <map> #define pb push_back #define mp make_pair using namespace std; typedef vector<pair<int,int> >::iterator IT; const int N = 30005; int sz[N], fr[N], f[N], dis[N]...
Here is a piece of code written in C: #pragma comment(linker, "/STACK:102400000,102400000") #include <cstdio> #include <queue> #include <vector> #include <cstring> #include <iostream> #include <map> #define pb push_back #define mp make_pair using namespace std; typedef vector<pair<int,int> >::iterator IT; const int N ...
No
p00000
C
Compile Error
#include<stdio.h> #include<conio.h> int main(void){ int a=1; int i,j; for( i=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%d * %d= %d \n",i,j,i*j); } } getch(); return 0; }
Here is a piece of code written in C: #include<stdio.h> #include<conio.h> int main(void){ int a=1; int i,j; for( i=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%d * %d= %d \n",i,j,i*j); } } getch(); return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #include <algorithm> #include <queue> #include <map> #include <set> #include <vector> #include <string> #include <stack> #include <bitset> #define INF 0x3f3f3f3f #define eps 1e-8 #define FI first #define SE second #pragma comme...
Here is a piece of code written in C: #include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #include <algorithm> #include <queue> #include <map> #include <set> #include <vector> #include <string> #include <stack> #include <bitset> #define INF 0x3f3f3f3f #define eps 1e-8 #define F...
No
p00000
C
Compile Error
j=1;main(i){for(;i%10;j%10?:j=1,i++)printf("%dx%d=%d\n",i,j++,i*j);}
Here is a piece of code written in C: j=1;main(i){for(;i%10;j%10?:j=1,i++)printf("%dx%d=%d\n",i,j++,i*j);} Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
j;amin(i){for(;10%i+=j/9;j%=9)printf("%dx%d=%d\n",i,j,++j*i);}
Here is a piece of code written in C: j;amin(i){for(;10%i+=j/9;j%=9)printf("%dx%d=%d\n",i,j,++j*i);} Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <cmath> #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <ctime> #include <bitset> #include <algorithm> #include <set> #include <string> #include <vector> #include <map> #include <...
Here is a piece of code written in C: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <cmath> #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <ctime> #include <bitset> #include <algorithm> #include <set> #include <string> #inc...
No
p00000
C
Compile Error
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; int n,m; typedef long long LL; #define DC 50 #define N 100005 LL s[N*5],fab[DC*2],h[DC*2]; int p[N*5],g[N*5][DC]; int dvd(LL x){ if (x <= 0) return 0; return lower_bound(h,h+DC,x) - h; } void update(int k){ s[k] = 0; for (int i=0;i<DC;...
Here is a piece of code written in C: #include <cstdio> #include <cstring> #include <algorithm> using namespace std; int n,m; typedef long long LL; #define DC 50 #define N 100005 LL s[N*5],fab[DC*2],h[DC*2]; int p[N*5],g[N*5][DC]; int dvd(LL x){ if (x <= 0) return 0; return lower_bound(h,h+DC,x) - h; } void update...
No
p00000
C
Compile Error
#include <iostream> #include <cstring> #include <cstdio> #include <queue> #define N 200015 #define M 600300 using namespace std; class FlowNetwork { struct ARC { int u, cap, next; inline void init(int a, int b, int c) { u = a, cap = b, next = c; } } arc[M]; int head[N], n, m, source, sink; int c[N << 1], ...
Here is a piece of code written in C: #include <iostream> #include <cstring> #include <cstdio> #include <queue> #define N 200015 #define M 600300 using namespace std; class FlowNetwork { struct ARC { int u, cap, next; inline void init(int a, int b, int c) { u = a, cap = b, next = c; } } arc[M]; int head[N...
No
p00000
C
Compile Error
#include<stdio.h> #include<string.h> #include<algorithm> #include<vector> #define ll __int64 using namespace std ; const int maxn = 300001 ; const int mod = 1000000007 ; ll ans[maxn] ; struct SAM { int fa[maxn<<1] , val[maxn<<1] , c[26][maxn<<1] ; ll cnt[maxn<<1] ; int tot , last ; int ws[maxn<<1] , wv[...
Here is a piece of code written in C: #include<stdio.h> #include<string.h> #include<algorithm> #include<vector> #define ll __int64 using namespace std ; const int maxn = 300001 ; const int mod = 1000000007 ; ll ans[maxn] ; struct SAM { int fa[maxn<<1] , val[maxn<<1] , c[26][maxn<<1] ; ll cnt[maxn<<1] ; int...
No
p00000
C
Compile Error
#include <cstdio> #include <cstring> using namespace std; int n,f; #define N 805 int e[N][N]; int g[1<<20]; struct MAT{ int a[N][N]; }a,b,c,d; void divide1(MAT &a){ for (int k=0;k<n;k++){ for (int i=0;i<f;i++){ int s = 0; for (int j=i*20;j<n && j<i*20+20;j++){ s *= 2; s += a.a[i][j]; } a.a[k][...
Here is a piece of code written in C: #include <cstdio> #include <cstring> using namespace std; int n,f; #define N 805 int e[N][N]; int g[1<<20]; struct MAT{ int a[N][N]; }a,b,c,d; void divide1(MAT &a){ for (int k=0;k<n;k++){ for (int i=0;i<f;i++){ int s = 0; for (int j=i*20;j<n && j<i*20+20;j++){ s *=...
No
p00000
C
Compile Error
#include <cstdio> #include <cstring> #include <iostream> using namespace std; char s[1111]; int num[10]; void fj(int x) { int i; for(i = 2; i * i <= x; i++) while(x % i == 0) { num[i]++; x /= i; } if(x > 1) num[x]++; } bool can_f(int x) { int i; for(i = 2; i * i <= x; i++)...
Here is a piece of code written in C: #include <cstdio> #include <cstring> #include <iostream> using namespace std; char s[1111]; int num[10]; void fj(int x) { int i; for(i = 2; i * i <= x; i++) while(x % i == 0) { num[i]++; x /= i; } if(x > 1) num[x]++; } bool can_f(int x) { ...
No
p00000
C
Compile Error
//C headers #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <limits.h> #include <ctype.h> #include <assert.h> //cpp headers #include <iostream> #include <iomanip> #include <sstream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map> #include <stac...
Here is a piece of code written in C: //C headers #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <limits.h> #include <ctype.h> #include <assert.h> //cpp headers #include <iostream> #include <iomanip> #include <sstream> #include <algorithm> #include <vector> #include <queue> #incl...
No
p00000
C
Compile Error
#include <stdio.h> int main(void) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n", i, j, i * j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(void) { for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n", i, j, i * j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(void) { int a,b; for(a=1;a<10;a++) { for(b=1;b<10;b++) { printf("%dx%d=%d",a,b,a*b); } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(void) { int a,b; for(a=1;a<10;a++) { for(b=1;b<10;b++) { printf("%dx%d=%d",a,b,a*b); } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(void){
Here is a piece of code written in C: #include<stdio.h> int main(void){ Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(void){
Here is a piece of code written in C: #include<stdio.h> int main(void){ Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main(void) { for (int i = 1; i <= 9; i++){ for (int j = 1; j <= 9; j++){ printf("%dx%d=%d\n", i, j, i*j); } } return (0); }
Here is a piece of code written in C: #include <stdio.h> int main(void) { for (int i = 1; i <= 9; i++){ for (int j = 1; j <= 9; j++){ printf("%dx%d=%d\n", i, j, i*j); } } return (0); } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
***********************************************************/ /* Clear function: reset and initialize the population */ /***********************************************************/ void clear() { int i,j; for (i = 0; i < NVARS; i++) { for (j = 0; j <= POPSIZE; j++) { populati...
Here is a piece of code written in C: ***********************************************************/ /* Clear function: reset and initialize the population */ /***********************************************************/ void clear() { int i,j; for (i = 0; i < NVARS; i++) { for (j = 0; j <= POPSIZE...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for(int i=1;i<10;i++){ for(int j=1;j<10;j++){ printf("%d×%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for(int i=1;i<10;i++){ for(int j=1;j<10;j++){ printf("%d×%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
1x1=1 1x2=2 . . 9x8=72 9x9=81 1x1=1 1x2=2 . . 9x8=72 9x9=81 1x1=1 1x2=2 . . 9x8=72 9x9=81
Here is a piece of code written in C: 1x1=1 1x2=2 . . 9x8=72 9x9=81 1x1=1 1x2=2 . . 9x8=72 9x9=81 1x1=1 1x2=2 . . 9x8=72 9x9=81 Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main() { for(i=1;i<=9;i++) for(j=1;j<=9;j++) printf("%d*%d=%d,i,j,i*j"); return 0; }
Here is a piece of code written in C: #include <stdio.h> int main() { for(i=1;i<=9;i++) for(j=1;j<=9;j++) printf("%d*%d=%d,i,j,i*j"); return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
荳雁捉荳サ隕∝惠陦・莉・蜑咲噪鬚倡岼蜥悟姐CF逧ДP,證よ慮豐。譛牙ュヲ譁ー逧?ョ玲ウ? 豈碑オ帶ッ碑セ?、壼黄菴咏噪鬚倡岼霑俶怏蠕亥、壽イ。譛牙所譌カ逧?。・謗?莉・蜷手。・逧??蠎ヲ霑倩ヲ∝刈蠢ォ. 譛?ソ大?蝨コ豈碑オ帑クュ,謌台サャ髦滉シ咲噪驟榊粋荳榊、溷・ス. 1:譛画慮蛟吩シ壼惠荳?%鬚倡岼荳?蝗?クコ荳?コ帷サ?鰍豬ェ雍ケ蠕磯柄逧?慮髣エ,隨ャ6蝨コ扈?弌襍侫鬚伜屏荳コ闌?峩蠑?ー丈コ?ク?せ,蝨ィ隨ャ荳?ャ。謠蝉コ、霑?コ?ソォ蜊贋クェ蟆乗慮謇榊書邇ー. 2:蟇ケ莠取汾莠幃「倡岼螟ェ霑?ーィ諷惹コ?隨ャ8蝨コ扈?弌襍帑ク?峩莉・荳コH鬚倡噪螟肴揩蠎ヲ螟ェ鬮伜柱譌カ髣エ蛻??譛蛾琉鬚伜ーア豐。譛画署莠、,莠句ョ樔...
Here is a piece of code written in C: 荳雁捉荳サ隕∝惠陦・莉・蜑咲噪鬚倡岼蜥悟姐CF逧ДP,證よ慮豐。譛牙ュヲ譁ー逧?ョ玲ウ? 豈碑オ帶ッ碑セ?、壼黄菴咏噪鬚倡岼霑俶怏蠕亥、壽イ。譛牙所譌カ逧?。・謗?莉・蜷手。・逧??蠎ヲ霑倩ヲ∝刈蠢ォ. 譛?ソ大?蝨コ豈碑オ帑クュ,謌台サャ髦滉シ咲噪驟榊粋荳榊、溷・ス. 1:譛画慮蛟吩シ壼惠荳?%鬚倡岼荳?蝗?クコ荳?コ帷サ?鰍豬ェ雍ケ蠕磯柄逧?慮髣エ,隨ャ6蝨コ扈?弌襍侫鬚伜屏荳コ闌?峩蠑?ー丈コ?ク?せ,蝨ィ隨ャ荳?ャ。謠蝉コ、霑?コ?ソォ蜊贋クェ蟆乗慮謇榊書邇ー. 2:蟇ケ莠取汾莠幃「倡岼螟ェ霑?ーィ諷惹コ?隨ャ8蝨コ扈?弌襍帑ク?峩莉・荳コH...
No
p00000
C
Compile Error
#include <cstdio> #include <iostream> #include <algorithm> using namespace std; const int N = 1009; int mabs(int x) { if(x > 0) return x; return -x; } struct xiang { int xs[1001]; int n; void print() { printf("("); for(int i = n - 1; i >= 0; i--) { if(xs[i] ...
Here is a piece of code written in C: #include <cstdio> #include <iostream> #include <algorithm> using namespace std; const int N = 1009; int mabs(int x) { if(x > 0) return x; return -x; } struct xiang { int xs[1001]; int n; void print() { printf("("); for(int i = n - 1; i >= ...
No
p00000
C
Compile Error
#include <cstdio> #include <cstring> #include <vector> using namespace std; int n, q; #define N 100005 vector<int> e[N], w[N]; vector< pair<int,int> > g[N]; int p[N], f[N]; #define pb push_back typedef long long ll; ll d[N], ans[N]; int getf(int k){ return (f[k] == k) ? k : f[k] = getf(f[k]); } void dfs(int k,int fa...
Here is a piece of code written in C: #include <cstdio> #include <cstring> #include <vector> using namespace std; int n, q; #define N 100005 vector<int> e[N], w[N]; vector< pair<int,int> > g[N]; int p[N], f[N]; #define pb push_back typedef long long ll; ll d[N], ans[N]; int getf(int k){ return (f[k] == k) ? k : f[k]...
No
p00000
C
Compile Error
#include<stdio.h> int main(void) { int i; int j; for(i = 1;i <= 9;i++){ for(j = 0;j <= 9;j++){ printf("%dx%d=%d\n", i, j, i * j); } } return (0); }s
Here is a piece of code written in C: #include<stdio.h> int main(void) { int i; int j; for(i = 1;i <= 9;i++){ for(j = 0;j <= 9;j++){ printf("%dx%d=%d\n", i, j, i * j); } } return (0); }s Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int d[1000000]; int main(void) { int n, m, p, pp, ppp; int i, j, x, y; int index, work, an1, an2, yen, yen2, yen3; int min, max, mid; int xx, yy; scanf("%d %d %d", &n, &m, &p); for (i = 0; i < m; i++){ scanf("%d", &d[i]); } for (an1 = 0; an1 < m; an1++) { index = an1; for (an2 ...
Here is a piece of code written in C: #include <stdio.h> int d[1000000]; int main(void) { int n, m, p, pp, ppp; int i, j, x, y; int index, work, an1, an2, yen, yen2, yen3; int min, max, mid; int xx, yy; scanf("%d %d %d", &n, &m, &p); for (i = 0; i < m; i++){ scanf("%d", &d[i]); } for (an1 = 0; an1 <...
No
p00000
C
Compile Error
#include<cstdio> main(){ }
Here is a piece of code written in C: #include<cstdio> main(){ } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main(void) { int c; for (int i=1; i<=9; i++){ for (int j=1; j<=9; j++){ printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(void) { int c; for (int i=1; i<=9; i++){ for (int j=1; j<=9; j++){ printf("%dx%d=%d\n", i, j, i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ int i,j; for(i=1;i<10;i++){ for(j=1;j<10;j++{ printf("%dx%d=%d",i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ int i,j; for(i=1;i<10;i++){ for(j=1;j<10;j++{ printf("%dx%d=%d",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> #define FOR( i,a ) for( i = 0;i < a;i++ ) int main(){  int i = 0,j = 0; FOR( i,10 ){ FOR( j,10 ){ printf( "%dx%d=%d",i,j,i*j ); }} return 0; }
Here is a piece of code written in C: #include<stdio.h> #define FOR( i,a ) for( i = 0;i < a;i++ ) int main(){  int i = 0,j = 0; FOR( i,10 ){ FOR( j,10 ){ printf( "%dx%d=%d",i,j,i*j ); }} return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { printf("%dx%d=%d\n", i, j, i * j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { printf("%dx%d=%d\n", i, j, i * j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
null
Here is a piece of code written in C: null Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main() {int a,i,j; for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { printf("%d x %d = %d",i,j,i*j); printf("\n"); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main() {int a,i,j; for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { printf("%d x %d = %d",i,j,i*j); printf("\n"); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main(){ for(int i = 1; i <= 9; i++){ for(int j = 1; j <= 9; j++){ printf("%dx%d=%d\n", i, j, i * j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(){ for(int i = 1; i <= 9; i++){ for(int j = 1; j <= 9; j++){ printf("%dx%d=%d\n", i, j, i * j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main(){ for(int i = 1; i <= 9; i++){ for(int j = 1; j <= 9; j++){ printf("%dx%d=%d\n", i, j, i * j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(){ for(int i = 1; i <= 9; i++){ for(int j = 1; j <= 9; j++){ printf("%dx%d=%d\n", i, j, i * j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
/* *********************************************** Author :CKboss Created Time :2015蟷エ01譛?7譌・ 譏滓悄蜈ュ 00譌カ19蛻?3遘?File Name :fenxi.cpp ************************************************ */ #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <string> #include <cmath> #include <...
Here is a piece of code written in C: /* *********************************************** Author :CKboss Created Time :2015蟷エ01譛?7譌・ 譏滓悄蜈ュ 00譌カ19蛻?3遘?File Name :fenxi.cpp ************************************************ */ #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #inclu...
No
p00000
C
Compile Error
#include <iostream> int main(){for(int i=1;i<10;i++)for(int j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);return 0;}
Here is a piece of code written in C: #include <iostream> int main(){for(int i=1;i<10;i++)for(int j=1;j<10;j++)printf("%dx%d=%d\n",i,j,i*j);return 0;} Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main() { int i, j; for(i=1; i<10; i++) { for(j=1; j<10; i++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main() { int i, j; for(i=1; i<10; i++) { for(j=1; j<10; i++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
a
Here is a piece of code written in C: a Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%d×%d=%d\n",i,j,i*j) } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%d×%d=%d\n",i,j,i*j) } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%d×%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%d×%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for( int i = 1; i <= 9; i++ ){ for( int j = 1; j <= 9; j++ ){ printf("%dx%d=%d", i, j, i * j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for( int i = 1; i <= 9; i++ ){ for( int j = 1; j <= 9; j++ ){ printf("%dx%d=%d", i, j, i * j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
/* *********************************************** Author :CKboss Created Time :2015蟷エ04譛?1譌・ 譏滓悄荳?19譌カ00蛻?7遘?File Name :CF514E.cpp ************************************************ */ #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <string> #include <cmath> #include <...
Here is a piece of code written in C: /* *********************************************** Author :CKboss Created Time :2015蟷エ04譛?1譌・ 譏滓悄荳?19譌カ00蛻?7遘?File Name :CF514E.cpp ************************************************ */ #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #inclu...
No
p00000
C
Compile Error
test
Here is a piece of code written in C: test Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
test
Here is a piece of code written in C: test Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
@0000.cpp
Here is a piece of code written in C: @0000.cpp Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <iostream> using namespace std; int main() { for(int i = 1; i <= 9; i) { for(int j = 1; j <= 9; j) { cout << i << "x" << j << "=" << i*j << endl; } } return 0; }
Here is a piece of code written in C: #include <iostream> using namespace std; int main() { for(int i = 1; i <= 9; i) { for(int j = 1; j <= 9; j) { cout << i << "x" << j << "=" << i*j << endl; } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
sourceCode
Here is a piece of code written in C: sourceCode Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <iostream> using namespace std; int main() { for(int i = 1; i <= 9; i) { for(int j = 1; j <= 9; j) { cout << i << "x" << j << "=" << i*j << endl; } } return 0; }
Here is a piece of code written in C: #include <iostream> using namespace std; int main() { for(int i = 1; i <= 9; i) { for(int j = 1; j <= 9; j) { cout << i << "x" << j << "=" << i*j << endl; } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { printf("%dx%d\n",i,j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { printf("%dx%d\n",i,j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> #include<stdlib.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n",i,j,i*j); } } system("pause"); return 0; }
Here is a piece of code written in C: #include<stdio.h> #include<stdlib.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n",i,j,i*j); } } system("pause"); return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> #include<stdlib.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> #include<stdlib.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d", i, j, i * j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { printf("%dx%d=%d", i, j, i * j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { if (i == 9 && j == 9) { printf("%dx%d=%d", i, j, i * j); } else { printf("%dx%d=%d\n", i, j, i * j); } } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i = 1; i < 10; i++) { for (int j = 1; j < 10; j++) { if (i == 9 && j == 9) { printf("%dx%d=%d", i, j, i * j); } else { printf("%dx%d=%d\n", i, j, i * j); } } } return 0; } Do you think this code will co...
No
p00000
C
Compile Error
#include <stdio.h> int main(void) { for( int i = 1; i <= 9; i++ ) { for( int j = 1; j <= 9; j++ ) { printf( "%dx%d=%d\n", i, j, i*j ); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(void) { for( int i = 1; i <= 9; i++ ) { for( int j = 1; j <= 9; j++ ) { printf( "%dx%d=%d\n", i, j, i*j ); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
include<stdio.h> int main(){ int x,y; int i,j; for(i=1; i<10; i++){ for(j=1; j<10; j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: include<stdio.h> int main(){ int x,y; int i,j; for(i=1; i<10; i++){ for(j=1; j<10; j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
include<stdio.h> int main(){ int x,y; int i,j; for(i=1; i<10; i++){ for(j=1; j<10; j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: include<stdio.h> int main(){ int x,y; int i,j; for(i=1; i<10; i++){ for(j=1; j<10; j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
package com.degree45; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.net.*; import java.util.*; import org.dom4j.*; import org.dom4j.io.OutputFormat; import org.dom4j.io.SAXReader; import org.dom4j.io.*; public class XML_Account { private Document doc; private...
Here is a piece of code written in C: package com.degree45; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.net.*; import java.util.*; import org.dom4j.*; import org.dom4j.io.OutputFormat; import org.dom4j.io.SAXReader; import org.dom4j.io.*; public class XML_Acco...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) { printf("%dx%d=%d\n", i, j, i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<cstdio> #include<algorithm> #include<set> using namespace std; struct Point { int x, y; Point(int x = 0, int y = 0) : x(x), y(y){} bool operator < (const Point t) const{ if(x != t.x) return x < t.x; return y < t.y; } }; int main() { int T; scanf("%d", &T); while(T--) { ...
Here is a piece of code written in C: #include<cstdio> #include<algorithm> #include<set> using namespace std; struct Point { int x, y; Point(int x = 0, int y = 0) : x(x), y(y){} bool operator < (const Point t) const{ if(x != t.x) return x < t.x; return y < t.y; } }; int main() { in...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ int i; int j; int seki; for(i=1;i<10;i++){ for(j=1;j<10;j++){ seki = i*j; printf("%dx%d=%d\n",i,j,seki); } }
Here is a piece of code written in C: #include<stdio.h> int main(){ int i; int j; int seki; for(i=1;i<10;i++){ for(j=1;j<10;j++){ seki = i*j; printf("%dx%d=%d\n",i,j,seki); } } Do you think this cod...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ int i; int j; int seki; for(i=1;i<10;i++){ for(j=1 ;j<10;j++){ seki = i*j; printf("%dx%d=%d\n",i,j,seki); } } } ~
Here is a piece of code written in C: #include<stdio.h> int main(){ int i; int j; int seki; for(i=1;i<10;i++){ for(j=1 ;j<10;j++){ seki = i*j; printf("%dx%d=%d\n",i,j,seki); } } } ~ ...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ int i; int j; int seki; for(i=1;i<10;i++){ for(j=1 ;j<10;j++){ seki = i*j; printf("%dx%d=%d\n",i,j,seki); } } } ~
Here is a piece of code written in C: #include<stdio.h> int main(){ int i; int j; int seki; for(i=1;i<10;i++){ for(j=1 ;j<10;j++){ seki = i*j; printf("%dx%d=%d\n",i,j,seki); } } } ~ ...
No
p00000
C
Compile Error
include<stdio.h> int main(){ int i,j; for(i=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: include<stdio.h> int main(){ int i,j; for(i=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
####索引 **** ```sql create table TD( id number, sq number, tri number, fac number, fib number, pow number ); create or replace procedure proce1 AS id number:=1; last1 number:=0; last2 number:=1; lastpow number:=1; lastfac number:=1; md...
Here is a piece of code written in C: ####索引 **** ```sql create table TD( id number, sq number, tri number, fac number, fib number, pow number ); create or replace procedure proce1 AS id number:=1; last1 number:=0; last2 number:=1; lastpow number:...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ int i,j,sum; sum=0; for(i=0;i<10;i++){ for(j=0;j<10;j++){ sum=i*j; printf(i+"x"+j+"="+sum\n); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ int i,j,sum; sum=0; for(i=0;i<10;i++){ for(j=0;j<10;j++){ sum=i*j; printf(i+"x"+j+"="+sum\n); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i=1; i<=9; i++) { for (int j=1; j<=9; j++) printf("%dx%d=%d\n", i,j,i*j); } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i=1; i<=9; i++) { for (int j=1; j<=9; j++) printf("%dx%d=%d\n", i,j,i*j); } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for (int i=1; i<=9; i++) { for (int j=1; j<=9; j++) { printf("%dx%d=%d\n", i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for (int i=1; i<=9; i++) { for (int j=1; j<=9; j++) { printf("%dx%d=%d\n", i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
include<stdio.h> int main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ printf("%dx%d=%d\n", i,j,i*j); } } return 0; }
Here is a piece of code written in C: include<stdio.h> int main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ printf("%dx%d=%d\n", i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
include<stdio.h> main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ printf("%dx%d=%d\n", i,j,i*j); } } return 0; }
Here is a piece of code written in C: include<stdio.h> main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ printf("%dx%d=%d\n", i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ printf("%dx%d=%d\n", i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for(int i=1; i<=9; i++){ for(int j=1; j<=9; j++){ printf("%dx%d=%d\n", i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main(void){ int i = j = 0; for(i = 1;i <= 9;i++){ for(j = 1;j <= 9;j++){ printf("%dx%d=%d\n", i, j, i*j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main(void){ int i = j = 0; for(i = 1;i <= 9;i++){ for(j = 1;j <= 9;j++){ printf("%dx%d=%d\n", i, j, i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include <stdio.h> int main() { for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; }
Here is a piece of code written in C: #include <stdio.h> int main() { for(int i=1;i<=9;i++){ for(int j=1;j<=9;j++){ printf("%dx%d=%d\n",i,j,i*j); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(int argc,const char *argv[]){ int i,j; for(i=1;i<=9;i++){ for(j=1;i<=9;i++){ printf("%d??%d=%d",i,j,seki); } printf("\n"); } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(int argc,const char *argv[]){ int i,j; for(i=1;i<=9;i++){ for(j=1;i<=9;i++){ printf("%d??%d=%d",i,j,seki); } printf("\n"); } return 0; } Do you think this code will compile successfully? Ans...
No
p00000
C
Compile Error
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in=new Scanner(System.in); int i,j; for(i=1; i<=9; i++) { for(j=1; j<=9; j++){ System.out.println(i+"x"+j+"="+i*j); } } } }
Here is a piece of code written in C: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in=new Scanner(System.in); int i,j; for(i=1; i<=9; i++) { for(j=1; j<=9; j++){ System.out.println(i+"x"+j+"="+i*j); } } } } ...
No
p00000
C
Compile Error
import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner in=new Scanner(System.in); int i,j; for(i=1; i<=9; i++) { for(j=1; j<=9; j++){ System.out.println(i+"x"+j+"="+i*j); } } } }
Here is a piece of code written in C: import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner in=new Scanner(System.in); int i,j; for(i=1; i<=9; i++) { for(j=1; j<=9; j++){ System.out.println(i+"x"+j+"="+i*j); } } ...
No
p00000
C
Compile Error
select stu.GRADE,stu.SEX,inj.KIND_ID,count(*) from REGISTERATION as reg join STUDENT as stu join INJURE as inj where reg.STUDENT = stu.S_ID and reg.INJURE = inj.KIND_ID group by stu.GRADE , stu.SEX , inj.KIND_ID with rollup;
Here is a piece of code written in C: select stu.GRADE,stu.SEX,inj.KIND_ID,count(*) from REGISTERATION as reg join STUDENT as stu join INJURE as inj where reg.STUDENT = stu.S_ID and reg.INJURE = inj.KIND_ID group by stu.GRADE , stu.SEX , inj.KIND_ID with rollup; Do you think this code will compile successfully? Answ...
No
p00000
C
Compile Error
#include<stdio.h> int main(){ int i,j; for(i = 1; i < 10; i++){ for(j = 1; j < 10; j++){ printf(i + "*" + j + "=" + i*j + "\n"); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ int i,j; for(i = 1; i < 10; i++){ for(j = 1; j < 10; j++){ printf(i + "*" + j + "=" + i*j + "\n"); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
include<stdio.h> int main(void){ for(a=1;a<10;a++){ for(b=1;b<10;b++){ printf("%dx%d\n",a,b); } } return 0; }
Here is a piece of code written in C: include<stdio.h> int main(void){ for(a=1;a<10;a++){ for(b=1;b<10;b++){ printf("%dx%d\n",a,b); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
p00000
C
Compile Error
#include<stdio.h> int main(){ for(i=0;i<10;i++;){ for(j=0;j<10;j++;){ y=i*j; printf(i "x" j "=" y); } } return 0; }
Here is a piece of code written in C: #include<stdio.h> int main(){ for(i=0;i<10;i++;){ for(j=0;j<10;j++;){ y=i*j; printf(i "x" j "=" y); } } return 0; } Do you think this code will compile successfully? Answer 'Yes' or 'No'.
No
End of preview. Expand in Data Studio

No dataset card yet

Downloads last month
6