any one help me how the following program execute
main()
{
int x=5;
printf("%d %d %d",x,x<<3,x>>2);
}
//output : 5 40 1
I am an Electrical engineering ( electrical back round ) ,can i get hvac Water system design details to easy understand ,i am working past 15years in Pharmaceuticals company with Engineering depart.
0 Answers Archimedis Healthcare,
can any one please tell me what is mean by back papers,back log,historical standing ????????? this mean history of arrears is it correct or not.........
what is a pointer in c language?
Explain Belady's Anomaly.
how the class is instance of object?
difference between tcp ip and open system interconnection
wats the difference between RS latch using NAND n NOR gate? which is to be preffered?
successful command to make linux system as router in redhat-+
MY interview Experience with TCS
WAP in Java to print the format A B A B C D E D E
Hello, I need to compare, using a cobol program, two cobol skeletons. I don't know if it is easy to do this or it will be so complicated. I wanna have your opinions. Thanks a lot
#include<stdio.h> int fn(int v); main() { printf("%d\n",fn(7)); } int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; }