main()
{
int a=0;
if(a=0) printf("Ramco Systems\n");
printf("India\n");
}
output?

Answer Posted / kushalava

India only

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is this pointer in c plus plus?

588


What is a const pointer in c?

666


What is the data segment that is followed by c?

602


Explain what is the most efficient way to store flag values?

692


What do you mean by scope of a variable in c?

540






Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

600


Why use int main instead of void main?

590


Define circular linked list.

567


What are the advantages and disadvantages of c language?

556


swap 2 numbers without using third variable?

656


Why is python slower than c?

595


Describe newline escape sequence with a sample program?

647


What do you mean by keywords in c?

619


What is the default value of local and global variables in c?

555


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); } }

1953