main()
{
int a=0;
if(a=0) printf("Ramco Systems\n");
printf("India\n");
}
output?
Answer Posted / yogendra jain
Ramco Systems
India
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the use of c language in real life?
i have a written test for microland please give me test pattern
What is pointer & why it is used?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Explain what is the benefit of using an enum rather than a #define constant?
What is the difference between local variable and global variable in c?
Describe dynamic data structure in c programming language?
By using C language input a date into it and if it is right?
What is hashing in c language?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
If the size of int data type is two bytes, what is the range of signed int data type?
What are examples of structures?
Can a variable be both constant and volatile?