#include <stdio.h> int main() { int marks[2][3]; marks[0][0]=78; marks[0][1]=87; marks[0][2]=98; printf("%d",marks[0][0]); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: