What do you mean by team??

Answer Posted / sarma

as every one knows tteam is a literal word that word
meaning group of persons working together for attaing their
common goal.

Is This Answer Correct ?    12 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5216


What is the function of volatile in c language?

670


Can a pointer be volatile in c?

539


What are lookup tables in c?

552


How many levels of indirection in pointers can you have in a single declaration?

598






What is %d called in c?

763


Why should I prototype a function?

644


Can you pass an entire structure to functions?

698


Give me the code of in-order recursive and non-recursive.

890


Why does the call char scanf work?

622


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

672


What are two dimensional arrays alternatively called as?

667


What is include directive in c?

649


Why is C language being considered a middle level language?

658


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

562