Does * p ++ increment p or what it points to?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
c program for searching a student details among 10 student details
Is it better to use a macro or a function?
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
printf("%d",(printf("Hello")); What it returns?
write a code for large nos multilication (upto 200 digits)
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What is malloc return c?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
Write a program on swapping (100, 50)
what is difference between declaring the pointer as int and char in c language?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }