In c programming typeing to occupy the variables in memory
space.
if not useing the variable the memory space is wasted.ok,
how to avoid the situation..? (the variable is used &
notused)
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the purpose of 'register' keyword?
What is information technology.
Explain is it valid to address one element beyond the end of an array?
Write a program to check prime number in c programming?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
What is the best style for code layout in c?
How do you construct an increment statement or decrement statement in C?
What is pragma in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Explain what are the advantages and disadvantages of a heap?
how to find a 5th bit is set in c program
#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);}