What does *p++ do?
No Answer is Posted For this Question
Be the First to Post Answer
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
what is the difference between c and c++?
How to write a multi-statement macro?
why program counter is 16 bit?
What is sizeof array?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
What is the sizeof () operator?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;