What is c preprocessor mean?
No Answer is Posted For this Question
Be the First to Post Answer
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
How can I find out if there are characters available for reading?
Explain how do you sort filenames in a directory?
What is the difference between the expression “++a” and “a++”?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
two variables are added answer is stored on not for third variable how it is possible?
how to make a scientific calculater ?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
Why C language is a procedural language?