char *p="name";
printf(p);
How are structure passing and returning implemented?
What is use of #include in c?
How can I find out the size of a file, prior to reading it in?
WHAT IS C?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
What are the different types of control structures?
What are the properties of union in c?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
Why is it important to memset a variable, immediately after allocating memory to it ?
Explain what is the difference between #include and #include 'file' ?
What does typedef struct mean?
List the variables are used for writing doubly linked list program.