Which node is more powerful and can handle local information processing or graphics processing?
No Answer is Posted For this Question
Be the First to Post Answer
what is c
Explain what is the difference between functions abs() and fabs()?
What are dangling pointers?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
How can I prevent another program from modifying part of a file that I am modifying?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Famous puzzles which are generally asked by companies during interviews ?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Why use int main instead of void main?