What is an example of enumeration?
Answer / antony edwin
when you list all of an author's works one by one.
| Is This Answer Correct ? | 0 Yes | 0 No |
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
What are 'near' and 'far' pointers?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
can we print any string without using terminator?
What is the use of sizeof?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
What is the difference between volatile and const volatile?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What is scope of variable in c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
How can you pass an array to a function by value?