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 does 4d mean in c?
I came across some code that puts a (void) cast before each call to printf. Why?
Is it better to use malloc() or calloc()?
how to go with this?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
How does sizeof know array size?
What is scope rule of function in c?
What language is c written?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
What is the difference between a string and an array?