What is the output from this program?

#include <stdio.h>

void do_something(int *thisp, int that)
{
int the_other;

the_other = 5;
that = 2 + the_other;
*thisp = the_other * that;
}

int main(void)
{
int first, second;

first = 1;
second = 2;
do_something(&second, first);
printf("%4d%4d\n", first, second);

return 0;
}

Answers were Sorted based on User's Feedback



What is the output from this program? #include <stdio.h> void do_something(int *thisp, ..

Answer / kruthi

0001 35

Is This Answer Correct ?    2 Yes 0 No

What is the output from this program? #include <stdio.h> void do_something(int *thisp, ..

Answer / srikanth karnati

1,35

Is This Answer Correct ?    2 Yes 0 No

What is the output from this program? #include <stdio.h> void do_something(int *thisp, ..

Answer / hasan kayman

###1##35 (# sign means space)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Why do we use pointer to pointer in c?

0 Answers  


Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.

1 Answers   Amazon, CSJM, HCL, Microsoft, TCS, Wipro,


why array index always starts from zero??

4 Answers   TCS,


What is const keyword in c?

0 Answers  


What is queue in c?

0 Answers  






Why structure is used in c?

0 Answers  


How does #define work?

0 Answers  


find the minimum of three values inputted by the user

3 Answers  


Program to trim a given character from a string.

5 Answers   NetApp,


convert 12345 to 54321 withoutusing strig

5 Answers  


code snippet for creating a pyramids triangle ex 1 2 2 3 3 3

4 Answers  


What are the ways to a null pointer can use in c programming language?

0 Answers  


Categories