How do you access command-line arguments?
what do u mean by Direct access files? then can u explain about Direct Access Files?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is the meaning of c in c language?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
Write a program to generate the Fibinocci Series
What are the types of i/o functions?
write an algorithm and a program to count the number of elements in a circularly singly linked list
What is the difference between char array and char pointer?
Where static variables are stored in c?
What are the uses of null pointers?