what is the syallabus of computer science students in group-
1?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
How to throw some light on the b tree?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How to delete a node from linked list w/o using collectons?
what is use of malloc and calloc?
How does variable declaration affect memory?
What are variables and it what way is it different from constants?
What is the difference between far and near ?
What is the code in while loop that returns the output of given code?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
What is a good data structure to use for storing lines of text?