What are register variables? What are the advantage of using register variables?
What is memory leak in c?
what is d pitfalls of registers variables
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Will Macros support multiple arguments ?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Which of these functions is safer to use : fgets(), gets()? Why?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How can I allocate arrays or structures bigger than 64K?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
What are the advantages of using 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