Explain what is the benefit of using an enum rather than a #define constant?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between static variable and register variable?
what is foreign key in c language?
Explain two-dimensional array.
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
SRUCTURE PROGRAMMING
When can you use a pointer with a function?
User define function contain thier own address or not.
how to make program without <> in library.
Is there any data type in c with variable size?
#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 the difference between exit() and _exit()?
Differentiate between declaring a variable and defining a variable?