What is c method?
No Answer is Posted For this Question
Be the First to Post Answer
all c language question
Difference between fopen() and open()?
what is the diference between pointer to the function and function to the pointer?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(“%d”,*(*(x+1)+3));
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Explain how do you determine a file’s attributes?
How can you return multiple values from a function?
Explain how do you print only part of a string?
why array index always starts from zero??
Define circular linked list.
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
A program to allow an input operand and operator from the operator and read on the display and output operand.