Is printf a keyword?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
What is C language Terminator?
What is use of null pointer in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Which one would you prefer - a macro or a function?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
what is a non volatile key word in c language?
What are the uses of a pointer?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.