Draw a diagram showing how the operating system relates to
users, application programs, and the computer hardware ?
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
What is the difference between array and pointer in c?
Why shouldn’t I start variable names with underscores?
Write a program in C to reverse a number by recursive function?
Method Overloading exist in c ?
How does memset() work in C?
What happens if a header file is included twice?
Why c is called top down?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
Does free set pointer to null?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output