Tag: programming languages
Questions Related to programming languages
main(){ int i=100,j=10,k=20; int sum; float ave; char myformat[]="ave=%.2f"; sum=i+j+k; ave=sum/3; printf(myformat,ave); }
What would be the output of the following: class A { A() const; //... };