Far Keyword


 
Thread Tools Search this Thread
Top Forums Programming Far Keyword
# 1  
Old 02-07-2006
Far Keyword

Hello,

What is far keyword in C and for what purpose is it used???

Pls ans.

thanx in advance.

svh
# 2  
Old 02-07-2006
FAR is used in 16 bit systems, like DOS 6.2. It's used to address a FAR *pointer,
one that lives in a another data segment.

You really should use a modern compiler - there are free compilers out there, TURBO C
is ancient.
# 3  
Old 02-08-2006
Hey thanx buddy.

i am using the paradigm c++ compiler.
it doesnt give any error for the far keyword.

but when i try to compile the same code with gcc it gives me the error.

can u pls tell me the how to get rid of this error.

bye svh
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search for a Keyword in file and replace another keyword or add at the end of line

Hi I want to implement something like this: if( keyword1 exists) then check if(keyword2 exists in the same line) then replace keyword 2 with New_Keyword else Add New_Keyword at the end of line end if eg: Check for Keyword JUNGLE and add/replace... (7 Replies)
Discussion started by: dashing201
7 Replies

2. Shell Programming and Scripting

Find keyword and export

I was trying to do any keyword search against all files in a particular folder, and interested in finding, an particular "keyword" whether present, if it present I need to export that file to an new folder. How to do it , via simple script ? (3 Replies)
Discussion started by: Jose Nirmal
3 Replies

3. Shell Programming and Scripting

Keyword Monitor

Hello, I have a shell script. I would like to add email the curl output. I'd appreciate if you help. Thanks. #!/bin/bash while read -r URL ; do if ] ; then echo "keyword changed!!!!"|mail -s "$URL Alert!!!!" info@test.com; fi;done</root/m/url.txt . (3 Replies)
Discussion started by: tara123
3 Replies

4. Shell Programming and Scripting

How to get the next word which falls just after a keyword?

Hi friends, i just want to know the command though which i can get the next word which comes just after a particluar keyword. For example: suppose text.out is file which contains a pl/sql procedure . i want to find out the word which falls just after the "table1" keyword. Thank... (7 Replies)
Discussion started by: neelmani
7 Replies

5. Shell Programming and Scripting

paste a keyword

Hello, I have a file with a keyword ccas i want to copy the keyword once in VI and have to paste it in the same file for multiple time,let's say 700 times,i dont know hoe to do it. Kindly help me on this Regards Thelak (2 Replies)
Discussion started by: thelakbe
2 Replies

6. Shell Programming and Scripting

How to remove code before second keyword

I have a site where over 1000+ files were injected with code. <?php lots of garbage ?><GOOD HTML or PHP> everything before the < is the injected code i.e., the injected code is: <?php lots of garbage ?> How do I: 1. check that there is in fact an injection (so I don't... (4 Replies)
Discussion started by: vanessafan99
4 Replies

7. Solaris

find keyword

Hi, This is my first post. Please help me. I wanted to find a particular key word in the entire system not in the filename, it should be in the file content. The output should display me... <The filename>, number of times the keyword is repeated. like file1: 2 file2: 4... (3 Replies)
Discussion started by: pointers
3 Replies

8. OS X (Apple)

Keyword Searching

Hi all, I am in the process of building a shell script as part of a auditing utility. It will search a specified directory for keywords and output results of the file path, and line number that the word was found on. I built a test script (shown below) that does just this, but egrep apparently... (0 Replies)
Discussion started by: tmcmurtr
0 Replies

9. UNIX for Dummies Questions & Answers

Using $0 and 'Function' Keyword

Hi all, I had a query on the usage of $0 in shells. I would appreciate any assistance in this. We moved from a sun solaris server to a linux server. I ran 2 different pieces on these servers and in one case, the outputs didnt change and in the other case, the outputs were different. The 2... (3 Replies)
Discussion started by: novice1324
3 Replies

10. Shell Programming and Scripting

Keyword in perl

Hi, I want to know all the keywords in perl as well as their usage. plz provide if u have any URL regarding this. In my perl script first 2 lines are 1)use DBI; 2)require "hello.pl"; what is the use these two statements. i thought the second one may be like include . Thanks in advance.... (1 Reply)
Discussion started by: sarwan
1 Replies
Login or Register to Ask a Question