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

Answer Posted / geetha

answer is 1,2

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is array within structure?

587


Who developed c language?

642


What is 1f in c?

1839


What is the difference between mpi and openmp?

736


why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

645






A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

733


Why c is a mother language?

554


How can I find the modification date and time of a file?

604


write a program to print data of 5 five students with structures?

1608


How can I write functions that take a variable number of arguments?

626


Is a house a mass structure?

641


What is scope rule in c?

606


What is the best style for code layout in c?

632


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2652


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

825