What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
No Answer is Posted For this Question
Be the First to Post Answer
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
what is differnence b/w macro & functions
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
How to add two numbers without using semicolon n c????
`write a program to display the recomended action depends on a color of trafic light using nested if statments
what is the difference b/w compiler and debugger?
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
Which weighs more, a gram of feathers or a gram of gold?
Why c is called top down?
What is a #include preprocessor?
#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 is an example of enumeration?