#include<stdio.h>
int main( )
{
Int a=300, b, c;
if(a>=400)
b=300;
c=200;
printf(“%d%d
”, b, c);
return0;
}
Answer Posted / sristi
b will print garbage value and c will print 200
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
In a header file whether functions are declared or defined?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is the use of pragma in embedded c?
What does sizeof int return?
What is omp_num_threads?
Write a program to swap two numbers without using the third variable?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Does c have enums?
What are the valid places to have keyword “break”?
How can I sort more data than will fit in memory?
Why is c called c not d or e?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is sizeof return in c?
Explain how can you restore a redirected standard stream?
regarding pointers concept