Write a program that can show the multiplication table.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between definition and declaration? give me some examples.
difference between i++* and *++i
what are the general concepts of c and c++
What does it mean when the linker says that _end is undefined?
Write a program to reverse a given number in c language?
What is the return type of sizeof?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
whether itis a structured language?
How do you determine if a string is a palindrome?
Difference Between embedded software and soft ware?
Stimulate calculator using Switch-case-default statement for two numbers
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); }