State two uses of pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
Give the rules for variable declaration?
Which header file is essential for using strcmp function?
define string ?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
write an interactive program to generate the divisors of a given integer.
What does struct node * mean?
Why enum is used in c?
What is const keyword in c?
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.
The statement, int(*x[]) () what does in indicate?
Write a program in C to convert date displayed in gregorian to julian date