how many keywords are available in 'c' language
a) 32
b) 34
c) 45
d) 48
How to write a multi-statement macro?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
how to swap 4 number without using temporary number?
Explain how are 16- and 32-bit numbers stored?
Explain what are the __date__ and __time__ preprocessor commands?
difference between i++* and *++i
What is hashing in c language?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. 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,
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
WAP to convert text into its ASCII Code and also write a function to decode the text given?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }