Describe newline escape sequence with a sample program?
No Answer is Posted For this Question
Be the First to Post Answer
What does 3 periods mean in texting?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What is the difference between the expression “++a” and “a++”?
Describe the order of precedence with regards to operators in C.
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
What is the difference between char array and char pointer?
Is c high or low level?
How can I get random integers in a certain range?
What is volatile keyword in c?
write a program to display numbers from 1 to 10 and 10 to 1?
There seem to be a few missing operators ..
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.