Write a code to generate divisors of an integer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between declaring a variable and defining a variable?
Describe wild pointers in c?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Name the language in which the compiler of "c" in written?
please explain every phase in the "SDLC" in the dotnet.
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
How can I get back to the interactive keyboard if stdin is redirected?
Output for following program using for loop only * * * * * * * * * * * * * * *
#define d 10+10 main() { printf("%d",d*d); }
What are the 5 data types?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;