the expression a=30*1000+2768; evalutes to
a) 32768
b) -32768
c) 113040
d) 0
Difference between MAC vs. IP Addressing
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); }
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
Why c++ is called c++ and not c+?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Should I learn c before c++?
What is maximum size of array in c?
Program to display given 3 integers in ascending order
Explain Doubly Linked Lists?
difference of two no's with out using - operator
int i=10; printf("%d %d %d", i, i=20, i);
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }