Is there anything like an ifdef for typedefs?
No Answer is Posted For this Question
Be the First to Post Answer
Is calloc better than malloc?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is clrscr ()?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What is a constant and types of constants in c?
What is the difference between typeof(foo) and myFoo.GetType()?
what are the advantages & disadvantages of unions?
10. 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
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Explain what is the benefit of using enum to declare a constant?
explain memory layout of a C program
What is page thrashing?