Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
~596 People Reached
Favorite Tags

4 Posted Topics

Member Avatar for mruthyunjaya

Hi all, i am designing a web interface for a system for which I was forced to use C for CGI application. as you all know, no session management in C, i am using cookies after normal validation. my issue is, with 2 or more people accessing the website from …

0
97
Member Avatar for imolorhe

[CODE=c] #include <math.h> #include <stdio.h> int main(void){ int i, j, isPrime; for(i = 2 ; i <= 100 ; i++){ isPrime = 1; for(j = 2 ; j <= i ; j++) { if( i == j) continue; else if( i % j == 0) isPrime = 0; } if(isPrime) …

Member Avatar for Chilton
-3
171
Member Avatar for GiRL,IT

[QUOTE=GiRL,IT;1036668] 2.Write a java program that reads two integers into the variables a and b then swaps the values of a and b. [/QUOTE] [code=java] public class swapInts { public static void main(String[] args) { Scanner console = new Scanner (System.in); int a, b, tempInt; System.out.println("Enter first Int: "); a …

Member Avatar for GiRL,IT
-3
169
Member Avatar for rameshnerella

i think the issue here is how to create a 16byte string. [code=java] String testString = "quickbrownfoxjum"; [/code] this forms a 16byte string. he is trying to club 32bit ip number & other 3 integers together a string like the above said. 16 letters in the string should represent all …

Member Avatar for mruthyunjaya
0
159

The End.