main()
{
int a=0;
if(a=0) printf("Ramco Systems\n");
printf("India\n");
}
output?
Answer Posted / fazlur rahaman naik
actually the output will b : India only.
the above programme doesn't produce any error at if(a =
0).because we r assiging value here, we r not comparing the
value here.so the condition will fail here and the next
statement after if condition will print.
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
Explain how can you tell whether a program was compiled using c versus c++?
What is getch() function?
What are the 4 types of unions?
Can a pointer be volatile in c?
Can the curly brackets { } be used to enclose a single line of code?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is the advantage of a random access file?
What is indirection? How many levels of pointers can you have?
Why main function is special give two reasons?
what is the diffrenet bettwen HTTP and internet protocol
What is string function c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
Write programs for String Reversal & Palindrome check