What are the primitive data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
prototype of sine function.
What are the advantages of using linked list for tree construction?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
What are the disadvantages of c language?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
What is scope of variable in c?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
What is #ifdef ? What is its application?
Stimulate calculator using Switch-case-default statement for two numbers
How macro execution is faster than function ?