Explain what is meant by high-order and low-order bytes?
No Answer is Posted For this Question
Be the First to Post Answer
can any one provide me the notes of data structure for ignou cs-62 paper
What is the use of putchar function?
How pointer is benefit for design a data structure algorithm?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Describe the steps to insert data into a singly linked list.
How to develop software using "c" programming?
What is the need of structure in c?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
What is array of structure in c?