How can I direct output to the printer?
No Answer is Posted For this Question
Be the First to Post Answer
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What is union and structure?
What the different types of arrays in c?
what is the maximum no. of bytes calloc can allocate
What's a "sequence point"?
difference between malloc and calloc
The differences between Windows XP and Windows Visa
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
What does dm mean sexually?
Taking an example,differentiate b/w loader and linker ?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }