What does *p++ do?
No Answer is Posted For this Question
Be the First to Post Answer
What does void main return?
How to add two numbers with using function?
What is realloc in c?
What is ## preprocessor operator in c?
What does the function toupper() do?
what is used instead of pointers in java than c?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
If input is 123 then how to print 100 and 20 and 3 seperately?
What does printf does?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?