How can I change their mode to binary?
No Answer is Posted For this Question
Be the First to Post Answer
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
If input is 123 then how to print 100 and 20 and 3 seperately?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
What are the different types of control structures?
How can a process change an environment variable in its caller?
Is main an identifier in c?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
how can we Declare a variable in c without defining it.
what is array?
What is sizeof return in c?
What does sizeof return c?
Can a program have two main functions?