Write a program to reverse a linked list in c.
No Answer is Posted For this Question
Be the First to Post Answer
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
What are two dimensional arrays alternatively called as?
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
What is a nested loop?
WHAT IS HIGH LEVEL LANGUAGE?
What are valid operations on pointers?
wat s the meaning of (int *)p +4;
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
What are preprocessor directives?