Why functions are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you restore a redirected standard stream?
What is a union?
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
What are data breakpoints?
why the execution starts from main function
Is c is a low level language?
Explain how can a program be made to print the name of a source file where an error occurs?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
in malloc and calloc which one is fast and why?
What is self-referential structure in c programming?