What are header files? What are their uses?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Explain how do you generate random numbers in c?
How to write c functions that modify head pointer of a linked list?
can a union be self-referenced?
What is property type c?
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
write a program to remove occurrences the word from entered text?
What does struct node * mean?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
What is a newline escape sequence?
What are the ways to a null pointer can use in c programming language?