Answer Posted / habeeb ahmed
10
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Is file a keyword in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Why is c fast?
How do I round numbers?
What is wrong with this declaration?
What is the use of static variable in c?
What is bss in c?
Write a factorial program using C.
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
explain what are actual arguments?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is hash table in c?
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); }