What is the difference between specifying a constant variable
like with constant keyword and #define it? i.e what is the
difference between CONSTANT FLOAT A=1.25 and #define A 1.25
No Answer is Posted For this Question
Be the First to Post Answer
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
using for loop sum 2 number of any 4 digit number in c language
How can a program be made to print the name of a source file where an error occurs?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What was noalias and what ever happened to it?
What is the purpose of macro in C language?
What is the role of && operator in a program code?
What are the 5 types of organizational structures?
Explain what is the difference between a free-standing and a hosted environment?
#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?
diff between exptected result and requirement?
How many loops are there in c?