Write a c program to build a heap method using Pointer to
function and pointer to structure ?
Under what circumstances does a name clash occur?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Explain built-in function?
How can I manipulate individual bits?
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
Why c++ is called c++ and not c+?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
what is a headerfile?and what will be a program without it explain nan example?
what is the difference between definition and declaration? give me some examples.
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
wat s the meaning of (int *)p +4;
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50