How is a macro different from a function?
How can you determine the size of an allocated portion of memory?
biggest of two no's with out using if condition statement
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the right type to use for boolean values in c? Is there a standard type?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Write a programe print the sum of series 0,1,2,.....10
Which of these functions is safer to use : fgets(), gets()? Why?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
Find MAXIMUM of three distinct integers using a single C statement
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What does void main () mean?
What are enums in c?