Why doesnt long int work?
No Answer is Posted For this Question
Be the First to Post Answer
How does the assert() function work?
How many main () function we can have in a project?
WHO WROTE C LANGUAGE?
Evaluate the following: 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; } for fn(7); 1) 10 2) 11 3) 1
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
write a program which will count occurance of a day between two dates.
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
what is level of tree if leaf node is at level 4.please explain.
Find occurence of a character in a sting.
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
how to set Nth bit of variable by using MACRO