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
~1K People Reached
Favorite Tags
Member Avatar for sambafriends

import java.io.*; package world; public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); } } istored this java file in world folder; and i set the class path as F:> set classpath = .;f:\; because my world folder in that drive but when i am compiling it …

Member Avatar for JamesCherrill
0
139
Member Avatar for sambafriends

namespace first { public class index { int count; public index() { count = 0; } public static index operator++(index x) { x.count++; return count; } } class Program { static void Main(string[] args) { index i = new index(); i++; Console.WriteLine(i); } } } when i am typing this …

Member Avatar for Ramy Mahrous
0
173
Member Avatar for sambafriends

Hi, any body guide me a program how to convert octal to hexa decimal number using c lnaguage without using %x %o regrards, samba

Member Avatar for Demonisya
0
65
Member Avatar for sambafriends

when I did the following porgram I got the error like NewNamespace.Focusview does not implement interfaceNenamesapce.Iencrypt.Icompress why? can any body explain this problem [code=asp.net]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NewNamespace { interface IEncrypt { void IEencrypt(); void Idecrypt(); } interface Icompress { void compress(); void decompress(); } …

Member Avatar for Fungus1487
0
97
Member Avatar for sambafriends

Hi, the concept of the program is enter a piece of text from the keyboard and place that piece of text into a file [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> void main() { FILE *fp; char s[80]; fp=fopen("new.txt","w"); if(fp==NULL) { printf("unable to open file"); exit(1); } printf("enter new line of text:\n"); …

Member Avatar for devnar
0
132
Member Avatar for sambafriends

strunct num { int count; }; void main() { num n1; num *p; p=&num; scanf("%d", p->count); printf("%d", p->count); } when I attempting to do this one I got the error message like 0 Null pointer .....

Member Avatar for sambafriends
0
272
Member Avatar for sambafriends

Hi, I need the drawbacks of procedural programming language with good program to explain if any body know best example please send it. I also need the best examples to describe object and class. Please its urgent regards, Samba

Member Avatar for CoolGamer48
0
110
Member Avatar for sambafriends

Hi, guys I need good program in procedural programming language which shows there is no importance to the data It should explain the exact drawback of the procedural programming language

Member Avatar for CoolGamer48
0
139
Member Avatar for sambafriends

[code=c] main( ) { int i=10,j=20; printf("%d%d",&i,&j); return 0; } [/code] When i executing this code: I got the address values like -12, -10, -20 Is it the address are in negative values or I am doing a mistake in the program. please give the solution it's urgent.

Member Avatar for awi123
0
111
Member Avatar for sambafriends

sorry, my eng is not good that much I am trying to run this program I am getting a strange result when I press 'a' through keyboard switch is running twice automatically for first time it is going to perfect case then second time it's going to default case [code=c] …

Member Avatar for manavsm
0
161