Which weighs more, a gram of feathers or a gram of gold?

Answer Posted / parimal kumar jha

equal

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there a way to compare two structure variables?

617


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

679


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

693


In C programming, what command or code can be used to determine if a number of odd or even?

627


What is typedef?

681






How does pointer work in c?

623


What is unsigned int in c?

562


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

613


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1962


Tell me what is null pointer in c?

617


Explain the advantages and disadvantages of macros.

630


Why void is used in c?

569


What is pointer in c?

745


Difference between MAC vs. IP Addressing

644


What is identifiers in c with examples?

680