Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Both 14 and 15 please What is output of the following program? #include int b = 4, c = 3; void f (void) {int b

image text in transcribed
Both 14 and 15 please
What is output of the following program? #include int b = 4, c = 3; void f (void) {int b = 5: b++; printf("%d %d ", b, c);} int main (void) {int b = 2; c++; f(); printf ("%d %d ", b, c);} a) 53 24 b) 64 24 c) 63 24 d) 64 64 Let f be the following function: int f (char *s, char *t) {char *p1, *p2; for (p1 = s; *p1 != '\0'; p1++) {for (p2 = t; *p2 ! = '\0'; p2++) if (*p1 == *p2) break; if (*p2 '\0') break;} return p1 - s;} What is the return value of f("babcd", "dabbe')? a) 0 b) 2 c) 3 d) 4 e) 5

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Practical Oracle8I Building Efficient Databases

Authors: Jonathan Lewis

1st Edition

0201715848, 978-0201715842

More Books

Students also viewed these Databases questions

Question

What is the basis for Security Concerns in Cloud Computing?

Answered: 1 week ago

Question

Describe the three main Cloud Computing Environments.

Answered: 1 week ago