Is a pointer a kind of array?
No Answer is Posted For this Question
Be the First to Post Answer
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Is a house a mass structure?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
how to use enum datatype?Please explain me?
what value is returned to operating system after program execution?
What are operators in c?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What would be an example of a structure analogous to structure c?
Describe dynamic data structure in c programming language?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
which operator is known as dummy operator in c?