int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?

Answer Posted / priya

answer will be 1,2

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is register a keyword in c?

638


Write a program to print fibonacci series using recursion?

586


Tell me what is null pointer in c?

615


How is a null pointer different from a dangling pointer?

557


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

672






How reliable are floating-point comparisons?

630


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

1518


regarding pointers concept

1575


What is equivalent to ++i+++j?

643


What is the time and space complexities of merge sort and when is it preferred over quick sort?

676


What is the 'named constructor idiom'?

640


What is structure pointer in c?

573


Is that possible to add pointers to each other?

904


What is the meaning of c in c language?

596


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

2269