How can I get random integers in a certain range?
No Answer is Posted For this Question
Be the First to Post Answer
Define recursion in c.
though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 Answers State Bank Of India SBI,
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
Array is an lvalue or not?
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..
What is the difference between call by value and call by reference in c?
what is default constructor?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
How many keywords are there in c?
What is && in c programming?
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)