write a program to display & create a rational number
What is the general form of a C program?
How can I read data from data files with particular formats?
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How are strings stored in c?
define switch statement?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
pierrot's divisor program using c or c++ code
What is structure padding ?