C Program to print series until there sum exceeds 2.6 term value exceeds 1.5 x+x2/2!+x3/3!+…
#include<stdio.h> #include<conio.h> main( ) { float x,sum=0,prod=1; int i; clrscr( ); printf(“enter…
C Program to find maximum and minimum of entered ’n’ number using arrays
#include<stdio.h> #include<conio.h> main( ) { int i,n,a,min,max; clrscr( ); printf(“ enter how…
C Program to find whether a number is divisible by ‘11’ or not without actual division
#include<stdio.h> #include<conio.h> #include<math.h> main( ) { int a,b,n,evensum=0,oddsum=0,div; clrscr( ); printf(“enter a…
What would be the problem in case NULL was defined as (char *) 0 in C Programming
The problem There is a major problem of using NULL in place…
How to Find Whether a Pointer in Linked list is Corrupted in C programming
Finding out whether a linked list in C programming includes a corrupted…
The Node.js Way – How `require()` Actually Works
Any Node.js engineer can disclose to you what the require()function does, yet…