Answer Posted / manoj singh
we find out the address of any variable.
void main()
{
clrscr();
int a;
printf("adress of a ::%u",a);
while(!kbhit());
}
i dont understand this question writeway but this is
my vew.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Explain what are the advantages and disadvantages of a heap?
What is the purpose of main( ) in c language?
What does d mean?
What are c preprocessors?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is meant by int main ()?
Why is this loop always executing once?
What does the && operator do in a program code?
to find the closest pair
how many errors in c explain deply
Explain how can I manipulate strings of multibyte characters?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What does s c mean on snapchat?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above