Explain argument and its types.
No Answer is Posted For this Question
Be the First to Post Answer
how can u print a message without using any library function in c
Explain union. What are its advantages?
develop algorithms to add polynomials (i) in one variable
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
What is meant by high-order and low-order bytes?
how to print this pyramid * * * * * * * * * * * * *
What is 2c dna?
#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
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
Write a small C program to determine whether a machine's type is little-endian or big-endian.
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?