download Mastguru Android App

Question Detail

UML meaning is

  • Unique modeling language
  • Unified modeling language
  • Unified modern language
  • Unified master laqnguage
Similar Questions :

1. We can insert pre written code in a C program by using

  • #read
  • #get
  • #include
  • #put

2. The first expression in a for loop is

  • Step value of loop
  • Value of the counter variable
  • Any of above
  • None of above

3. What will be output of
#include
void main()
{
char test =`S`;
printf("\n%c",test);
}

  • S
  • Error
  • Garbage value
  • None of above

4. What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(\"%d\",x);
}

  • error
  • 0
  • 10
  • Garbage value

5. calloc() belongs to which library

  • stdlib.h
  • malloc.h
  • calloc.h
  • None of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment