Implement a t9 mobile dictionary.
(Give code with explanation )
Answer / guna
http://www.eecs.yorku.ca/course_archive/2004-05/F/4441/T9.java
http://javatroops.blogspot.in/2012/10/implement-mobile-t9-using-trie.html
| Is This Answer Correct ? | 2 Yes | 1 No |
void main() { int i=10, j=2; int *ip= &i, *jp = &j; int k = *ip/*jp; printf(“%d”,k); }
#define DIM( array, type) sizeof(array)/sizeof(type) main() { int arr[10]; printf(“The dimension of the array is %d”, DIM(arr, int)); }
To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']
Write a program to model an exploding firecracker in the xy plane using a particle system
Is the following code legal? typedef struct a aType; struct a { int x; aType *b; };
main() { signed int bit=512, i=5; for(;i;i--) { printf("%d\n", bit = (bit >> (i - (i -1)))); } } a. 512, 256, 128, 64, 32 b. 256, 128, 64, 32, 16 c. 128, 64, 32, 16, 8 d. 64, 32, 16, 8, 4
#define SQR(x) x * x main() { printf("%d", 225/SQR(15)); } a. 1 b. 225 c. 15 d. none of the above
what is the output of the below program & why ? #include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); }
main() { int i=0; for(;i++;printf("%d",i)) ; printf("%d",i); }
#include<stdio.h> #include<conio.h> void main() { int a=(1,2,3,(1,2,3,4); switch(a) { printf("ans:"); case 1: printf("1");break; case 2: printf("2");break; case 3: printf("1");break; case 4: printf("4");break; printf("end"); } getch(); }
x=2 y=3 z=2 x++ + y++; printf("%d%d" x,y);
write a program to count the number the same (letter/character foreg: 's') in a given sentence.