#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
What are the ways to a null pointer can use in c programming language?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
What is 'bus error'?
What is const and volatile in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What are the different types of constants?
what are brk, sbrk?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
What is c language and why we use it?
how we can make 3d venturing graphics on outer interface
What is define c?
What is the difference between near, far and huge pointers?