#ifdef TRUE
int I=0;
#endif
main()
{
int j=0;
printf("%d %d\n",i,j);
}
Answer Posted / vignesh1988i
compailer error
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain Function Pointer?
How can I do serial ("comm") port I/O?
Which header file is used for clrscr?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is a dynamic array in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Are the variables argc and argv are always local to main?
Differentiate between full, complete & perfect binary trees.
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Why isn't it being handled properly?
Is this program statement valid? INT = 10.50;
Does * p ++ increment p or what it points to?
What is a keyword?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What are comments and how do you insert it in a C program?