How is = symbol different from == symbol in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
how can make variable not in registers
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
how can i calculate mean,median,mode by using c program
when user give a number it multiply with 9 without useing '+' and '*' oprator
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
How can I write a function analogous to scanf?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Is there any data type in c with variable size?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is undefined behavior?