Define Spanning-Tree Protocol (STP)
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I right-justify a string?
What is the use of the sizeof operator?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
what is an array
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
What is a null pointer in c?
In C language what is a 'dangling pointer'?
Explain what does the function toupper() do?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
What is c++ used for today?
What is the difference between printf and scanf )?