Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Code for calculating square root without using library function, of math.h
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
program for validity of triangle from 3 side
Explain the red-black trees?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Write a program to show the change in position of a cursor using c
What should malloc(0) do?
What is the difference between %d and %*d in C
What is meant by initialization and how we initialize a variable?