i want a program in c# for 100 or for a number greater
than 100.....pls help
#include<stdio.h> int main(){ int a=5; printf("%d %d %d",a++,a++,++a); return 0; }..please explain me output 7 6 8..Thnx in advance
please send me last 2 years solved IIT papers
successful command to make linux system as router in redhat-+
What is HPLC ? and define it.
how do we calculate physical address if logical address is given in the question?
what is the proper location of sample point for sphere tank?
What is the strongest naturally occurring material and how can it be cut?
the conditional jump instruction in 8086 have a displacement of more than 1 byte.explain how would you tackle a situation in which it is required to branch,on some condition,to a location which is more than 120 bytes away.
how much lighting lux need for a common walking area at night time
why does a microprocessor generally hAVE more address lines than data lines?
PLEASE SUGGEST THE BALLY PLACEMENT PAPER PATTERN ABOUT WRITTEN TEST,INTERVIEW,HR.ITS URGENT. AS BALLY IS GOING TO VISIT OUR CAMPUS.
#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; }