What is wrong with this program statement?
No Answer is Posted For this Question
Be the First to Post Answer
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
c program to input values in a table(using 2D array) and print odd numbers from them
Reverse a string word by word??
Write a program to check armstrong number in c?
Explain how do you override a defined macro?
Explain enumerated types in c language?
What is the method to save data in stack data structure type?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"