How to write a C program to determine the smallest among three nos using conditional operator?
2 19261Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
IBM,
1 7698#include
How is a macro different from a function?
Explain about C function prototype?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Tell us something about keyword 'auto'.
How to throw some light on the b tree?
Which built-in library function can be used to match a patter from the string?
swap 2 numbers without using third variable?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Why do we use int main?
Give basis knowledge of web designing ...
What is a buffer in c?
How can a program be made to print the name of a source file where an error occurs?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is a char in c?
What is character constants?