if the area was hit by a virus and so the decrease in the
population because of death was x/3 and the migration from
other places increased a population by 2x then annually it
had so many ppl. find our the population in the starting.
What is a c token and types of c tokens?
WHAT IS ABSTRACT DATA TYPE
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What is malloc and calloc?
Define macros.
Why should I use standard library functions instead of writing my own?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What is page thrashing?
main() { printf("hello"); fork(); }
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
How to declare pointer variables?
Is it fine to write void main () or main () in c?