can we declare a function in side the structure?
Answers were Sorted based on User's Feedback
sum of two integers values only other then integer it should print invalid input.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Is linux written in c?
What are the ways to a null pointer can use in c programming language?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Is main is a keyword in c?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
Why we use int main and void main?
What are variables c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon