What is ambagious result in C? explain with an example.
No Answer is Posted For this Question
Be the First to Post Answer
What is the most efficient way to count the number of bits which are set in a value?
find largest of 3 no
What is the difference between malloc() and realloc()?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the difference between formatted&unformatted i/o functions?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
What is the difference b/w main() in C language and main() in C++.
#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?
How the processor registers can be used in C ?
What do header files do?
Is stack a keyword in c?