#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
Disadvantages of C language.
what is available in C language but not in C++?
10 Answers CTS, TCS,
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
Explain what are multibyte characters?
write a program to add two numbers of any size.....(remember any size)
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
#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); }
Explain that why C is procedural?
How can I delete a file?
what is c language?
What is the need of structure in c?
Is c is a high level language?