How are pointers declared in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Is double link list a linear data structure? If Yes, Why?If No, Why?

4 Answers  


How are portions of a program disabled in demo versions?

0 Answers  


Write a program to print prime nums from 1-20 using c programing?

13 Answers   IBM,


What are the two forms of #include directive?

0 Answers   Aspire, Infogain,


Is it possible to run using programming C for Java Application?

2 Answers   NIC,






Explain what is meant by 'bit masking'?

0 Answers  


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

0 Answers  


write a program to delete an item from a particular location of an linear array?

1 Answers  


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

0 Answers   Wilco,


declare afunction pointer to int printf(char *)?

1 Answers   HCL,


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,


Tell about strtok & strstr functions

2 Answers   HCL, iFlex, Motorola,


Categories