A variable that is defined in a specified portion of a program but can be used throughout the program
a) global variable
b) local variable
c) character
d) none
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What is a file descriptor in c?
What is difference between far and near pointers?
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
Explain a pre-processor and its advantages.
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
Do you know the purpose of 'register' keyword?
What is the output of printf("%d", printf("Hello"));?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
What is the use of #define preprocessor in c?
Write a program to print ASCII code for a given digit.
Is c still used?