Does c have function or method?
What do you mean by invalid pointer arithmetic?
hi how to convert program from notepad to turboc editor can u please help me
Why do we use pointer to pointer in c?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Explain is it valid to address one element beyond the end of an array?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
Explain high-order and low-order bytes.
pascal triangle program
What is the difference between null pointer and wild pointer?
#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?
Is there any book to know about Basics of C Language?