#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
What does double pointer mean in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
#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); }
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
How can you find the day of the week given the date?
Why is c called a mid-level programming language?
What do mean by network ?
What is the mean of function?
Explain how do you override a defined macro?
How do you use a pointer to a function?
Is it acceptable to declare/define a variable in a c header?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain bit masking in c?
What are multidimensional arrays?