Write a C program to count the number of email on text
No Answer is Posted For this Question
Be the First to Post Answer
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
What are the different types of linkage exist in c?
Why c is a procedural language?
What is ambagious result in C? explain with an example.
In a header file whether functions are declared or defined?
What are qualifiers in c?
what is c?
What is data types?
suppose there are five integers write a program to find larger among them without using if- else
What is scanf () in c?
Can we declare variable anywhere in c?
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.