Tell me when is a void pointer used?
No Answer is Posted For this Question
Be the First to Post Answer
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How will you write a code for accessing the length of an array without assigning it to another variable?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Do you have any idea about the use of "auto" keyword?
Explain why c is faster than c++?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Write a C program to perform some of the operation which can be performed using Single linked list
int *a[5] refers to
What is the meaning of && in c?
How can we open a file in Binary mode and Text mode?what is the difference?