- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
4 Posted Topics
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 …
[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) …
[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 …
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 …
The End.
mruthyunjaya