Explain how do you print an address?
No Answer is Posted For this Question
Be the First to Post Answer
What does volatile do?
What is pointers in c with example?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
whats the use of header file in c?
What is meant by high-order and low-order bytes?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Tell us something about keyword 'auto'.
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
Where local variables are stored in c?