what is a far pointer
Answers were Sorted based on User's Feedback
Answer / raji
suppose int means take 2byte then far int means take 4bytes
| Is This Answer Correct ? | 7 Yes | 12 No |
Answer / narender bhardwaj
a normal pointter can only point to the main memory
location, while the far pointer can have an address of any
location of ur memory, including seconday one
| Is This Answer Correct ? | 29 Yes | 39 No |
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
Is it cc or c in a letter?
how to swap 2 numbers within a single statement?
Is array a primitive data type in c?
What are terms in math?
What is the need of structure in c?
Who developed c language and when?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
What is a volatile keyword in c?
Write the control statements in C language
64/square(4)
How can I change the size of the dynamically allocated array?