which is the best antivirus and how to update it
Answer Posted / matloob
macafee
easy to update
go to task manager and then to antivirus macafee
have right click
click to update.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain do array subscripts always start with zero?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How many bytes is a struct in c?
What is dynamic memory allocation?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
In C programming, what command or code can be used to determine if a number of odd or even?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Is calloc better than malloc?
If I have a char * variable pointing to the name of a function ..
Is c procedural or functional?
What is pass by value in c?
Why static variable is used in c?
What is boolean in c?
Why is a semicolon (;) put at the end of every program statement?
What is the difference between exit() and _exit() function in c?