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
7
Posts with Downvotes
3
Downvoting Members
6
1 Commented Post
0 Endorsements
~998 People Reached
Favorite Tags
Member Avatar for fsl4faisal

i want to implement multicast using python can anyone tell me how can i get information on socket programming in python?

Member Avatar for woooee
0
155
Member Avatar for fsl4faisal

i need a small project on php and mysql i m beginner in this field can anyone help me out..... plz...... it can be anything like hotel management........ thankyou

Member Avatar for xinam
-1
108
Member Avatar for fsl4faisal

[CODE] #include<stdio.h> #include<conio.h> #include<stdio.h> void maketree(struct node**); void inorder(struct node**); struct node{ struct node *left; struct node *right; int data; } void main() { struct node *root; root=NULL; printf("Enter root"); maketree(&root); preorder(&root); getch(); } void maketree(struct node **root) { int num; struct node *temp; if(*root==NULL){ //printf("Enter number"); scanf("%d",&num); temp=(struct node*)malloc(sizeof(struct …

Member Avatar for gusano79
0
162
Member Avatar for fsl4faisal

abstract class A { abstract void callme(); void callmetoo() { System.out.println("this is concrete method"); } } class B extends A { void callme() { System.out.println("implementation of callme"); } } public class abstractdemo { public static void main(String []args) { B b=new B(); b.callme(); b.callmetoo(); } }

Member Avatar for NP-complete
0
189
Member Avatar for fsl4faisal

interface A { public boolean bA=true; public boolean bB=true; public boolean bC=true; } interface B extends A { boolean bA=false;/*(here bA i think is ambiguous how does compiler know which value to take )* } class C implements B { public void printbool() { System.out.println("bA="+bA); System.out.println("bB="+bB); } } public class …

Member Avatar for JamesCherrill
-2
105
Member Avatar for maira74

HEre is my C++ program I made.... first I will put the directions and then the program. I cant seem to compile it for some reason so can anyone tell me what I did wrong please!! Write a C++ program that does the following. Besides #include <iostream>, you will need …

Member Avatar for NP-complete
0
233
Member Avatar for fsl4faisal

[code]#include<stdio.h> #include<stdlib.h> #include<malloc.h> #include<string.h> //int bin(int,int,int*); //int term; int main() { int *set; int num,*anum,j,i,k,term; printf([/code]

-4
46