There is a mobile keypad with numbers 0-9 and alphabets on
it. take input of 7 keys and then form a
word from the alphabets present on those keys.
No Answer is Posted For this Question
Be the First to Post Answer
Is c procedural or object oriented?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
in which language c language is written?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
How do you override a defined macro?
What are the different types of control structures in programming?
What is the purpose of macro in C language?
Can i use Two or More Main Funtion in any C program.?
What is the method to save data in stack data structure type?
What do you mean by c?
write a string copy function routine?