Forum: C 27 Days Ago |
| Replies: 3 Views: 196 can u have at it again pls and sorry about any mistake again.
Br.
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
int main(void)
{ |
Forum: C 28 Days Ago |
| Replies: 3 Views: 196 hi!
i'm trying to write the code to open the file and read the contents and write to another file with uppercase but the problem i'm having is path problem everything seems pretty fine but it says... |
Forum: Assembly May 7th, 2009 |
| Replies: 0 Views: 304 here is my Caesar cipher code, can u pls have a look at it and correct me if i'm wrong.
AREA text, CODE
SWI_Exit EQU &11
SWI_WriteC EQU &0
ENTRY |
Forum: Assembly May 5th, 2009 |
| Replies: 2 Views: 496 thankx for ur reply sir !
whatever i've got so far is in the code if u can pls have a look and correct me:
AREA text, CODE
SWI_WriteC EQU &0
ENTRY |
Forum: Assembly May 4th, 2009 |
| Replies: 2 Views: 496 this is my code which copies 1st string into 2nd String.
AREA StrCopy1, CODE
SWI_WriteC EQU &2
ENTRY ; mark the first instruction
main
ADR r1, srcstr ; pointer to first string ... |
Forum: Assembly May 2nd, 2009 |
| Replies: 2 Views: 401 This is my program listing it copies the 1st string into 2nd string.
CODE LISTING
************
AREA StrCopy1, CODE
SWI_WriteC EQU &2
ENTRY ; mark the first instruction |
Forum: Assembly May 1st, 2009 |
| Replies: 2 Views: 401 hi !
i'm very new to assembly and learning bit by bit but unfortunately i'm asked to write a program which encrypts a string using caesar cipher encryption method and then print that encrypted... |