What is bubble sort technique in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is huge pointer in c?
what is used instead of pointers in java than c?
Can a local variable be volatile in c?
What is the general form of a C program?
any string of bits of length 'n' represents a unique non- negative integer between.............?
what is the structure pointer?
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
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); }
write a program to print sum of each row of a 2D array.
What extern c means?
What is pointer and structure in c?
how to add numbers without using arithmetic operators.