How can I make sure that my program is the only one accessing a file?
program to find the ASCII value of a number
What is c value paradox explain?
What do you mean by recursion in c?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
What is the use of the function in c?
Differentiate Source Codes from Object Codes
What does p mean in physics?
WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
What are the ways to a null pointer can use in c programming language?
What is a far pointer in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Which command is more efficient? *(ptr+1) or ptr[1]