Write a program that his output 1 12 123
What is a loop?
How can I split up a string into whitespace-separated fields?
What are file streams?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
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.
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
What is a list in c?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
Why does everyone say not to use gets?
Explain that why C is procedural?