What are valid operations on pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What is abstract data structure in c?
Is r written in c?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
What is the deal on sprintf_s return value?
What are the general description for loop statement and available loop types in c?
What are pointers? What are stacks and queues?
Write a program to swap two numbers without using third variable in c?
Explain about block scope in c?