main()
{
int a=0;
if(a=0) printf("Ramco Systems\n");
printf("India\n");
}
output?
Answer Posted / kushalava
India only
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the code in while loop that returns the output of given code?
Why is c called a mid-level programming language?
What is scope rule in c?
Why is a semicolon (;) put at the end of every program statement?
Explain the difference between call by value and call by reference in c language?
Explain what is the concatenation operator?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Where define directive used?
Explain what is the difference between #include and #include 'file' ?
What is the difference between volatile and const volatile?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Explain what is the difference between a string and an array?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
what is different between auto and local static? why should we use local static?