Explain about the constants which help in debugging?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of below int n=10; (n++)++; printf("%d",n);
what is pointer
Write a program to print prime nums from 1-20 using c programing?
Is c object oriented?
What does *p++ do?
Explain what are multidimensional arrays?
#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 does 1f stand for?
write a program to arrange the contents of a 1D array in ascending order
Why shouldn’t I start variable names with underscores?
Differentiate between #include<...> and #include '...'
What is c preprocessor mean?