What does 2n 4c mean?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to convert an integer into a binary string?
What is meant by 'bit masking'?
What is the difference between far and near in c?
What is pass by value in c?
why TCS selected more student in the software field from all institution.
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Where static variables are stored in c?
What is the difference between void main and main in c?
what is diffrence between string and character array?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Explain following declaration int *P(void); and int (*p)(char *a);