What does 1f stand for?
No Answer is Posted For this Question
Be the First to Post Answer
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
How does the assert() function work?
why array index always starts from zero??
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
What is the purpose of the fflush() function in C?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
How can I manipulate strings of multibyte characters?
what is pointer ? what is the use of pointer?
what is the difference between malloc() and calloc() function?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
The differences between Windows XP and Windows Visa
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor