User profile: Ruthra Kumar

User info
User name:Ruthra Kumar
Name:ruthra kumar
Location:tamilnadu
Bio:computer science student
History
Joined:
Number of posts:6
Latest posts:

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 user
could you please explain why get() function is causing this ?

while loop keeps looping without getting input from user
struct stu_dat //outside main function { int rollno; char name[45], float average...