What is include directive in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the functions to open and close the file in c language?
How can you find the exact size of a data type in c?
What do you mean by invalid pointer arithmetic?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
Write a program in c using only loops to print * * * * * *******
How we can set and clear bit in a byte using macro function?
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is Function Pointer? Explain with example?
What is default value of global variable in c?
Hi, main() { } Is a user defined function or Built in Functionn
How do we open a binary file in Read/Write mode in C?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100