what will be the output of "printf("%d%d",scanf("%d%
d",&a,&b))".provide an explation regarding the question
Answer Posted / 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 |
Post New Answer View All Answers
When c language was developed?
What is pointers in c with example?
What are volatile variables in c?
What is the basic structure of c?
develop algorithms to add polynomials (i) in one variable
What is clrscr ()?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What language is c written?
What is a pointer variable in c language?
What is oops c?
What is the use of gets and puts?
What are keywords in c with examples?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is the difference between abs() and fabs() functions?