What are reserved words with a programming language?
No Answer is Posted For this Question
Be the First to Post Answer
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Explain union.
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
How to write a multi-statement macro?
What are the uses of null pointers?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
How can I call a function with an argument list built up at run time?
What does the file stdio.h contain?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning