How can I generate floating-point random numbers?
No Answer is Posted For this Question
Be the First to Post Answer
How do I determine whether a character is numeric, alphabetic, and so on?
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
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
Write a program that his output 1 12 123
What is Memory leakage ?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is the difference between malloc calloc and realloc in c?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
What is #pragma statements?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What is #include stdlib h?