why we are using float in C
Answers were Sorted based on User's Feedback
What are the various types of control structures in programming?
Why we use conio h in c?
What is the use of a semicolon (;) at the end of every program statement?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Can i use “int” data type to store the value 32768? Why?
Is anything faster than c?
#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?
Can we initialize extern variable in c?
What is c variable?
Why is extern used in c?
How to print "Hi World" without using semi colon?
What should be keep precautions while using the recursion method?