Why does not c have an exponentiation operator?
No Answer is Posted For this Question
Be the First to Post Answer
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
what is the coding of display the factorial of a number using array and function?
Why do we use stdio h and conio h?
Why is c so important?
How does the C program handle segmentation faults?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
define c
Describe how arrays can be passed to a user defined function
Define and explain about ! Operator?
#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?
Write a program to generate the Fibinocci Series
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.