Explain what will the preprocessor do for a program?
No Answer is Posted For this Question
Be the First to Post Answer
What is hungarian notation? Is it worthwhile?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
Why static is used in c?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
What are multidimensional arrays?
how we can say java is platform independent, while we require JVM for that particular Operating System?
What's the difference between constant char *p and char * constant p?
what is the difference between getch() and getchar()?
find out largest elemant of diagonalmatrix