Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~269 People Reached
Favorite Tags
Member Avatar for NewbieinC

[CODE]#include <stdio.h> #include <stdlib.h> #include <time.h> main(){ char cChoice; printf("****************************************\n\n"); printf(" FLIP!-TAC-TOE 3D \n\n"); printf(" Enter S to start the game or \n\n"); printf(" E to exit! \n\n"); printf(" Choice: ", cChoice); scanf("%c", &cChoice); if(cChoice == 'S') function1 (); else exit(EXIT_SUCCESS); printf("\n****************************************\n\n"); system("CLS"); void function1(){ char cMarker1; int i = …

Member Avatar for Adak
0
179
Member Avatar for Niharika Jain

Hey, I've just started with JSP! Was trying my hand at this Shopping cart app.here's the code..[CODE]<%@page import ="java.sql.*"%> <%! Connection con = null; String query = null; PreparedStatement stmt = null; ResultSet rs = null; %> <HTML> <BODY BGCOLOR='ORANGE'> <CENTER> <H2>YOUR CART CONTAINS</H2> <% try{ Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/shopping_mart?"+"user=root&password=root"); …

0
89