Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
0 Endorsements
~2K People Reached
PC Specs
Linux Distros
Favorite Tags
Member Avatar for hsetaknev
Member Avatar for hsetaknev

Hi guys, Am a begginer learning assembly .I am using Instruction set of 8085 for simplicity in the understandind. I've down loaded a soft called GNUsim8085.. I dont know how to load a loop n a simulator,and dont know how o input user values.PLEASE guYS tELL ME HOW IF U …

0
175
Member Avatar for hsetaknev

Hai frnds, Ahh...:?: I started learning PHP by my self frm somr Online tuts,And tried my first script.yes here it is [CODE]<html> <Head> My first PHP By my own </head> <body> <?php echo "My first program and its a failure" ?> </BODY> </html> [/CODE] But,The problem is..:confused: that iam not …

Member Avatar for hsetaknev
0
681
Member Avatar for hsetaknev

Hey guys,I admit I do commit Mistakes But this piece of code got well executed in my college (USED TURBO C++) But in my home PC (UBUNTU) Its not getting COMPILED [CODE]#include<stdio.h> /*header*/ //#include<conio.h> /*header*/ #include"maths.h" int main() { int rur1,rur2,b,a,c,x,y; int d; //clrscr(); printf( "Enter the value of A …

Member Avatar for Trentacle
0
146
Member Avatar for hsetaknev

[CODE]#include<stdio.h> void main() { int i=1,j=1,n=9; printf("enter the char"); scanf("%d",&n); while(i<=n) { while(j<=i) { printf("%d/0",i); j++; } printf("/n"); i++; } }[/CODE] OUTPUT 1 22 333 4444 55555

Member Avatar for vinitmittal2008
-1
132
Member Avatar for hsetaknev

1.What is diffrence Between NULL and '/0' characters? 2.Does the last cell os a string has NULL or '/0'?

Member Avatar for hsetaknev
0
148
Member Avatar for terabyte

I'm very interested in learning C before C++ but I can't find good books The K&R book looked very organized and short but it seems it is very outdated. So my two questions are.. Should I read the K&R book even thought it uses an old standard, if I do …

Member Avatar for Trentacle
0
176
Member Avatar for hsetaknev

i have a problem with my coding to fing wether given string is palindrome or not without using strcmp(); and srtrev(); it returns "the string is not a palindrome " for all string the [CODE]#include<stdio.h> #include<string.h> void main() { int n,i,j; char a[100]; scanf("%s",a); n=strlen(a); printf("the length ia%s,%d\n",a,n); while(i<=j) { …

Member Avatar for Shankye
0
111
Member Avatar for niehaoma

The purpose of this is to obtain a genuine critique of my source code (based on a fairly simple concept). I realize I may not have the cleanest implementation for testing for prime, due to the fact I am not an aspiring mathematician. I am interested on critique of the …

Member Avatar for hsetaknev
1
188