How to write a multi-statement macro?
No Answer is Posted For this Question
Be the First to Post Answer
What is the general form of #line preprocessor?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
what is the full form of c language
what is structuer?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
Not all reserved words are written in lowercase. TRUE or FALSE?
main() { clrscr(); } clrscr();
.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; }
write a program that print itself even if the source file is deleted?
What is int main () in c?
What is the difference between typeof(foo) and myFoo.GetType()?