What are the types of data files?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap four numbers without using fifth variable?
what are the languages used in c#?
What are the disadvantages of external storage class?
can we define a function in structure?
In which area global, external variables are stored?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What is structure padding and packing in c?
Should a function contain a return statement if it does not return a value?
Write a factorial program using C.
Explain the ternary tree?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
suppose there are five integers write a program to find larger among them without using if- else