What are the 4 types of programming language?
No Answer is Posted For this Question
Be the First to Post Answer
code for replace tabs with equivalent number of blanks
What is the use of a static variable in c?
Explain the meaning of keyword 'extern' in a function declaration.
C program to find all possible outcomes of a dice?
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.
#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?
How can I avoid the abort, retry, fail messages?
program for reversing a selected line word by word when multiple lines are given without using strrev
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Can we use any name in place of argv and argc as command line arguments?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=