Explain what is the purpose of "extern" keyword in a function declaration?
No Answer is Posted For this Question
Be the First to Post Answer
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
What are multibyte characters?
What are the types of pointers in c?
What will be the output of x++ + ++x?
What is an auto keyword in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
Output for following program using for loop only * * * * * * * * * * * * * * *
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Explain the advantages of using macro in c language?
write a program for size of a data type without using sizeof() operator?
22 Answers HCL, IBM,
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }