How can you be sure that a program follows the ANSI C standard?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of fflush() function?
what is the flow of execution in cprogram? ex:printf();,scanf();
Should I learn c before c++?
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Do character constants represent numerical values?
What are reserved words?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Can we change the value of static variable in c?
What are types of preprocessor in c?
what do the 'c' and 'v' in argc and argv stand for?
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1