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 clrscr ()?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is a program flowchart and how does it help in writing a program?
Can you mix old-style and new-style function syntax?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain what is gets() function?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the difference between text and binary modes?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Explain how do you generate random numbers in c?
how is the examination pattern?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if