How can I access memory located at a certain address?
Answers were Sorted based on User's Feedback
Answer / phani kumar s
using the pointers and address operator
&a where a is the variable
Is This Answer Correct ? | 6 Yes | 6 No |
Answer / aravind
Access in the sense!Do you mean how can u see the display.if so just use prints("%d",&variable)
Is This Answer Correct ? | 1 Yes | 1 No |
What is the most efficient way to count the number of bits which are set in a value?
What is return in c programming?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What is a pragma?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What is #include cctype?
using for loop sum 2 number of any 4 digit number in c language
In a header file whether functions are declared or defined?
Which built-in library function can be used to match a patter from the string?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
What are preprocessor directives in c?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if