Answer Posted / rehana
c is a basic language c programming means combined
programming its comes from BCPL(BASIC COMBINED PROGRAMMIN
LANGUAGE) its used to develope system and application
softwares.
| Is This Answer Correct ? | 16 Yes | 10 No |
Post New Answer View All Answers
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
How can I direct output to the printer?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What are terms in math?
Is array name a pointer?
What is the main difference between calloc () and malloc ()?
Which function in C can be used to append a string to another string?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What are the 5 data types?
Can main () be called recursively?
How can you restore a redirected standard stream?
What is the best organizational structure?
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 deal on sprintf_s return value?