Explain pointers in c programming?
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
When do we get logical errors?
Why clrscr is used in c?
Explain how do you determine a file’s attributes?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Write a programe print the sum of series 0,1,2,.....10
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
How can I convert integers to binary or hexadecimal?
How does free() know explain how much memory to release?
Write a program to find whether the given number is prime or not?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }