Answer Posted / sagar pudi
software is a set of programs together to accomplish a task.
for example: Notepad is a software.
a Browser is a software.
a Website is a software.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is variables in c?
What are the advantages of union?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is difference between union All statement and Union?
What is the heap?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
how can use subset in c program and give more example
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
what is a constant pointer in C
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
I have a varargs function which accepts a float parameter?
What is the value of h?
What is adt in c programming?
What is hash table in c?
What are structure types in C?