Does c have function or method?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What do you mean by invalid pointer arithmetic?

0 Answers  


hi how to convert program from notepad to turboc editor can u please help me

3 Answers  


Why do we use pointer to pointer in c?

0 Answers  


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.

0 Answers  


Explain is it valid to address one element beyond the end of an array?

0 Answers  






What are the different flags in C? And how they are useful? And give example for each in different consequences?

1 Answers  


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

2 Answers  


Explain high-order and low-order bytes.

0 Answers  


pascal triangle program

2 Answers  


What is the difference between null pointer and wild pointer?

0 Answers  


#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?

5 Answers   Ramco,


Is there any book to know about Basics of C Language?

4 Answers  


Categories