How can you access memory located at a certain address?
No Answer is Posted For this Question
Be the First to Post Answer
What is "Hungarian Notation"?
List the variables are used for writing doubly linked list program.
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
Explain the difference between malloc() and calloc() function?
What is unary operator?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Why c is a procedural language?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What is meant by keywords in c?
what is different between auto and local static? why should we use local static?