Explain what are preprocessor directives?
What is a c token and types of c tokens?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
How can you be sure that a program follows the ANSI C standard?
Explain that why C is procedural?
Differentiate between calloc and malloc.
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is string function c?
What is difference between Structure and Unions?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
how to find string length wihtout using c function?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
how to get the starting address of file stored in harddisk through 'C'program.