what is computer

Answer Posted / bilal

a computer is a set of h/w and s/w components

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

1903


What tq means in chat?

579


What is scope and lifetime of a variable in c?

571


What are the usage of pointer in c?

701


What does do in c?

606






#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5194


How will you delete a node in DLL?

677


What are pragmas and what are they good for?

569


What does the file stdio.h contain?

597


Are pointers integer?

545


Why flag is used in c?

651


How do you convert strings to numbers in C?

705


Write the test cases for checking a variable having value in range -10.0 to +10.0?

1813


For what purpose null pointer used?

606


What are the types of macro formats?

600