How can I access memory located at a certain address?
Answer Posted / 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 |
Post New Answer View All Answers
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
how to find binary of number?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Is it fine to write void main () or main () in c?
Can you apply link and association interchangeably?
How to write a multi-statement macro?
What is the use of static variable in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is a class c rental property?
Which programming language is best for getting job 2020?
How do you determine a file’s attributes?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none