Answer Posted / vatsava
int main()
{
int *ptr;
ptr = (int *)2000;
*ptr = 10;
printf("%d", *ptr);
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why is c called a structured programming language?
What does a pointer variable always consist of?
What is the best way of making my program efficient?
Write a program to generate random numbers in c?
What is a const pointer in c?
Is c dynamically typed?
What is the use of bit field?
Do you know pointer in c?
How can you avoid including a header more than once?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
How can you be sure that a program follows the ANSI C standard?
What does the && operator do in a program code?
What are identifiers and keywords in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor