Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what will be the output of "printf("%d%d",scanf("%d%
d",&a,&b))".provide an explation regarding the question

Answers were Sorted based on User's Feedback



what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))&qu..

Answer / dipendra

i think it will print the 2, and some garbage value.

Is This Answer Correct ?    10 Yes 0 No

what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))&qu..

Answer / amegha

scanf() returs the number of vlaues read successfully. so
heree the pritf() prints the value that is returned by the
scanf(), ie 2.(a,b). so the output will be 2 and some
garbage value.

Is This Answer Correct ?    5 Yes 1 No

what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))&qu..

Answer / manish soni bca 3rd year jaipu

what is output of this program
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
a=10;
b=20;
printf("%d %d");
getch();
}

it gives the 20 10;
bcoz printf fn return which value,
read recently ,reversely.
so above question we easly explain.
that;-
so scanf fn return which value process it.
scanf fn return 2 and after return value of b.


manish soni bca 3rd year jaipur tagore college

Is This Answer Correct ?    2 Yes 0 No

what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))&qu..

Answer / manish soni bca 3rd year jaipu

if we enter
1234
5678
answer is
2 5678
plz tell how

Is This Answer Correct ?    2 Yes 1 No

what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))&qu..

Answer / akki166786

you are right mr. manish that it will print 2 and value of
'b' but i also dont know why it is printing the value of 'b'..

Is This Answer Correct ?    1 Yes 0 No

what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))&qu..

Answer / nilambuja

the output will be what value of a and b...

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More C Interview Questions

f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


what is the difference between while and do while?

2 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

1 Answers  


how to add our own function in c library please give details.?

1 Answers   TCS,


How can I invoke another program or command and trap its output?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }

1 Answers  


write a function for strtok()??

2 Answers   Verifone,


Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.

1 Answers   College School Exams Tests, Wipro,


Can a variable be both const and volatile?

0 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


Can I initialize unions?

0 Answers  


Categories