Answer Posted / bsn.teja
sunil and ambar both are right i think
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the method to save data in stack data structure type?
Explain what will the preprocessor do for a program?
Explain what is the concatenation operator?
What is a function in c?
What is the difference between text and binary i/o?
What is const volatile variable in c?
Tell us two differences between new () and malloc ()?
Explain how does flowchart help in writing a program?
how is the examination pattern?
Write a program to implement queue.
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); }
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Why enum is used in c?
Does * p ++ increment p or what it points to?