Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
40% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
2 Commented Posts
~509 People Reached
Favorite Forums
Favorite Tags
c x 4
Member Avatar for Nomi55

#include <stdio.h> main() { char a[4][4]; int row,col; for (row=0;row<4;row=row+2) { for (col=0;col<4;col++) { if ((row==col)||(row!=col)) { a[row][col]='x'; } } } for (row=0;row<4;row=row+2) { for (col=0;col<4;col++) { printf ("%c",a[row][col); } } }

Member Avatar for Gonbe
0
157
Member Avatar for Faiza akmal
Member Avatar for Nomi55

i m new in c language.plz tell me which compiler is the best GCC or Turbo c...?i m waiting

Member Avatar for Nomi55
0
257