Search results for programming-in-c

70 votes
13 answers
3
18 votes
4 answers
14
47 votes
8 answers
17
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 pro...