What is self-referential structure in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
How do I use strcmp?
How can you check to see whether a symbol is defined?
Find the highest of three numbers and print them using ascending orders?
Is c is a low level language?
How can I send mail from within a c program?
how to print 212 as Twohundreds twelve plz provide me ans soon
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Explain the difference between exit() and _exit() function?
how to swap two nubers by using a function with pointers?
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.
Explain what header files do I need in order to define the standard library functions I use?