What is sizeof array in c?
No Answer is Posted For this Question
Be the First to Post Answer
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
How to draw the flowchart for structure programs?
What is storage class?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What is an lvalue?
Write a program to identify if a given binary tree is balanced or not.
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
What is volatile keyword in c?
what is the hexidecimal number of 4100?