What does *p++ do? What does it point to?
No Answer is Posted For this Question
Be the First to Post Answer
How to print "I Love My India" without using semi colon?
Is linux written in c?
print the palindrome numbers in between 0 to n
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
What does c mean in basketball?
What does s c mean in text?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
write a program that print itself even if the source file is deleted?
How can I discover how many arguments a function was actually called with?
what is self refrential structure
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }