CS3353 - C Programming and Data structures

1234567891011121314151617
Across
  1. 2. unconditional control statement
  2. 3. str1[20]="abc", str2[30]="def". str2 has _______after using strcpy(str1,str2)
  3. 4. void main(){ int a=3; a=4; printf("ab");} output is
  4. 6. entry controlled loop
  5. 9. string function to find length of string
  6. 10. takes the control to the beginning of the loop
  7. 12. operator equivalent to if else
  8. 15. data type occupies 1 byte of memory
  9. 16. pow()is associated with ____ headerfile
  10. 17. = is ____ operator
Down
  1. 1. %d, %f , %c etc are
  2. 5. << is _____ operator
  3. 7. in which concept memory is shared
  4. 8. return type of a function if it does not return a value
  5. 11. one statement within another statement is called
  6. 13. group of elements of same data type
  7. 14. while statement executes the block once even if the condition is wrong.Fill true / fals