July 5, 2021 in C and CPP When accessing a structure member, the identifier to the left of the dot operator is the name of Read More
July 5, 2021 in C and CPP Assuming var1 has value 20. What will following code print? 1.3 Assuming var1 has value 20. What will following code print?Printf(“%d %d\n”, var1–, ++var1);A) 20 20B) 19 20C) 20 21D) 21 22 Read More
July 5, 2021 in C and CPP Develop a flowchart and then write a program for analyzing a line of text stored in a file by examining each of the characters Read More
July 5, 2021 in C and CPP Draw a flow chart and then write a ‘C’ program to generate first 15 members of the following b) Draw a flow chart and then write a ‘C’ program to generate first 15 members of the followingsequence.1, 3, 4, 7, 11, 18, 29, … Read More
July 5, 2021 in C and CPP Develop an algorithm to do the following: a) Develop an algorithm to do the following:Read an array of 20 elements and then send all negative elements of the array to theend without altering the original sequence. Read More