Answer Posted / laxman
it is a integer.
it is a used to declare some numeric valu.
| Is This Answer Correct ? | 26 Yes | 0 No |
Post New Answer View All Answers
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); }
What is the size of enum in bytes?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Define circular linked list.
How can I call fortran?
What is #include stdio h?
Can you mix old-style and new-style function syntax?
What is a structure member in c?
Where is volatile variable stored?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the difference between local variable and global variable in c?
Difference between MAC vs. IP Addressing
How can you determine the size of an allocated portion of memory?
Which is best linux os?
Why cant I open a file by its explicit path?