Answer Posted / raj
Pointers and arrays are inseparably related, but they are
not synonyms for each other. Starting with this post, we
will look into one-dimensional array, it’s storage pattern,
how the array elements are accessed. And lastly, we look
into a new feature of C99: the variable length array.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is data types?
Explain what are its uses in c programming?
Explain what is the difference between text files and binary files?
Is null a keyword in c?
Explain about the constants which help in debugging?
Why n++ execute faster than n+1 ?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How can you call a function, given its name as a string?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is array in c with example?
What is s in c?
What is actual argument?
Why c is faster than c++?
What is far pointer in c?