Is reference used in C?
Answer / bavi
No.Oly cal by value method of passing is used in C.
Also, calling by reference can be achieved thru' Pointers.
| Is This Answer Correct ? | 7 Yes | 2 No |
Explain enumerated types.
Is it possible to execute code even after the program exits the main() function?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
Write a code to remove duplicates in a string.
Explain the difference between null pointer and void pointer.
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
why do we use # in c-language?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
How can I get back to the interactive keyboard if stdin is redirected?
Can a void pointer point to a function?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.