Can include files be nested?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What does int main () mean?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
What are the types of unary operators?
What is a program flowchart and explain how does it help in writing a program?
Do variables need to be initialized?
What are the different types of control structures?
Why do some versions of toupper act strangely if given an upper-case letter?