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 the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
What is the right type to use for boolean values in c? Is there a standard type?
What is the importance of c in your views?
Differentiate between declaring a variable and defining a variable?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What is the use of gets and puts?
If you know then define #pragma?
disadvantages of realloc ?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
write a addition of two no. program with out using printf,scanf,puts .
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }