Gate CS-2015-3 Question Paper With Solutions

Q. 25 Consider the following C program segment.

# include <stdio.h>  int main( )  {      char s1[7] = "1234", *p;      p = s1 + 2;      *p = '0' ;      printf ("%s", s1);  }

What will be printed by the program?

(A) 12

(B) 120400

(C) 1204

(D) 1034

Answer: (C)

Explanation:

Gate CS-2015-3 Question Paper With Solutions

Learn More:   Gate ME-2016-3 Question Paper With Solutions

LEAVE A REPLY

Please enter your comment!
Please enter your name here