what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / makadivya
10
| Is This Answer Correct ? | 14 Yes | 22 No |
Post New Answer View All Answers
Why double pointer is used in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
List out few of the applications that make use of Multilinked Structures?
When the macros gets expanded?
What is the meaning of typedef struct in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are directives in c?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What does sizeof function do?
What is getch c?
write a program to print data of 5 five students with structures?
Are there namespaces in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is structure in c definition?