What is void main ()?
No Answer is Posted For this Question
Be the First to Post Answer
What does typedef struct mean?
Explain what is the benefit of using enum to declare a constant?
what are non standard function in c
code for bubble sort?
do you think its fraud or original company?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
What is the easiest sorting method to use?
#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 programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
What does struct node * mean?
What is c standard library?
What is the difference between local variable and global variable in c?