Without Computer networks, Computers will be half the use.
Comment.
No Answer is Posted For this Question
Be the First to Post Answer
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Explain what is operator promotion?
Tell me can the size of an array be declared at runtime?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Which of these functions is safer to use : fgets(), gets()? Why?
can we write a program in c for printf and scanf without using header file stdio.h
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
What is the newline escape sequence?
how will you write a program on linked lists using JAVA programming???????????
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }