What is d'n in c?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What is the difference b/w Structure & Union?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
largest Of three Number using without if condition?
What is wrong with this declaration?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Tell us bitwise shift operators?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
how write a addtion of two single dimensional array using of pointer in c language?
what is the use of ~ in c lang?????
Explain what standard functions are available to manipulate strings?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?