How can I write a function analogous to scanf?
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to initialize a variable at the time it was declared?
Magic square
What is the difference between the local variable and global variable in c?
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
What does typedef struct mean?
What are the string functions? List some string functions available in c.
Which header file is used for clrscr?
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.
can we define a function in structure?
Differentiate between declaring a variable and defining a variable?
1,1,5,17,61,217,?,?.
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?