Latest Answer: kindly see the memory diagram for C programsLow Memory__________________________CODE MEMORY ...
What would be the output of this program & Why#include#define one two#define two oneint main(){ int one=1,two=2; printf("%d%d",one,two); return 0;}
Latest Answer: out put is 2 2 2 2 2 2 8 3 4 4 the o/p of first printf statement is 2 2 2 2 2o/p of second printf statement is 2 8 3 4 4 ...
Latest Answer: Here is another method:int *x=0;printf("%dn",x); x=x+1;// The difference in these 2 values is 4. When a pointer is incremented. It is increased by size of the data type it ispointing to printf("%dn",x);printf("Size of Integer is %d n",sizeof(int)); // ...
Latest Answer: Hi , in getche() e stands for "echo" When the function is encountered, user has to type in any key that it displays on monitor( echos characher). In case of getch() function it accepts character but doesnt display that. Have a fun with ...
Latest Answer: Static variables are stored in the same section as global variables I think ...But I am not sure ...
Latest Answer: A string constant consists of a sequence of characters enclosed indouble-quote marks. For example:char *p="hello";constant string is const char *p="hello"; ...
Latest Answer: program contain statement main it consider as int main .should return a value. void means null ...
Latest Answer: AdditionSubractionComparisonAssignment ...
View page << Previous 9 10 11 12 [13] 14 15 16 17 18 Next >>

Go Top