If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
will u please send me the placement papers to my mail???????????????????
When should I declare a function?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is the mean of this statement:: if(int i=0 * i=9)
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
How do I declare a pointer to an array?
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
What is the purpose of void pointer?
What is the meaning of int *x[]();?
How to add two numbers without using semicolon at runtime