Explain what is page thrashing?
No Answer is Posted For this Question
Be the First to Post Answer
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
how to write hello word without using semicolon at the end?
What is meant by keywords in c?
What is #define size in c?
What are the different pointer models in c?
what is difference between array of characters and string
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
How can I write a function analogous to scanf?
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
write a c program to find the sum of five entered numbers using an array named number
why integer range between -327680to+32767
What is string concatenation in c?