What is the difference between the = symbol and == symbol?
No Answer is Posted For this Question
Be the First to Post Answer
how to impliment 2 or more stacks in a single dimensional array ?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
What is use of null pointer in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
yogesh patil in dell
Can a file other than a .h file be included with #include?
Can you explain the four storage classes in C?
Which function in C can be used to append a string to another string?
Difference between fopen() and open()?
What is the use of getchar() function?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }