What are the types of assignment statements?
No Answer is Posted For this Question
Be the First to Post Answer
explain how do you use macro?
List the difference between a While & Do While loops?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
What is the value of uninitialized variable in c?
what is data structure?
related to rdbms query .
write the program to find multiplication of 2-D matrix??????????
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Why should I prototype a function?
What do you know about the use of bit field?
What is difference between constant pointer and constant variable?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?