Do you know the purpose of 'register' keyword?
No Answer is Posted For this Question
Be the First to Post Answer
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
write a c program in such a way that if we enter the today date the output should be next day's date.
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What are the types of arrays in c?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
What are the functions to open and close file in c language?
Can a binary search tree be used as an index? If yes, how? Explain
How do you determine a file’s attributes?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
What does volatile do?
What is the difference between c and python?