Why clrscr is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
What would be an example of a structure analogous to structure c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Why is main function so important?
Why use int main instead of void main?
what is the hardware model of CFG( context free grammar)
Is array name a pointer?
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
what is void pointer?
Tell me the use of bit field in c language?
What is meant by 'bit masking'?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }