long long int through scanf()?yes - "have g++ follow the c++11 iso c++ language standard" is checked "on" in my compiler settings ...
long long int through scanf()?how to get long long int input through scanf(). i tried using "%lld" and "%lli" placeholder ,but pro...
Display the largest and smallest valleys of an array? min=0,max=0; if(array[i]<min) { min=array[i]; } if(array[i]>max) { max=array[i]; } u can use an...
while loop keeps looping without getting input from usercould you please explain why get() function is causing this ?
while loop keeps looping without getting input from userstruct stu_dat //outside main function { int rollno; char name[45], float average...