main()
{
int i=400,j=300;
printf("%d..%d");
}
Answers were Sorted based on User's Feedback
Answer / muthu
It prints only garbage value, since the variables x and y
were not metioned out side the bracket
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer:
400 300
printf takes first two intilization values as default
| Is This Answer Correct ? | 2 Yes | 9 No |
What is the difference between array and linked list in c?
Explain how can you determine the size of an allocated portion of memory?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Meaning of () in c
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Is flag a keyword in c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Explain what is a const pointer?
Program to display given 3 integers in ascending order
Program to find the sum of digits of a given number until the sum becomes a single digit
Why is structure important for a child?
what is the difference between class and unio?