What are the different categories of functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
Which is best book for data structures in c?
Explain the Difference between the New and Malloc keyword.
What does != Mean in c?
How can I read a directory in a c program?
how to find string length wihtout using c function?
program to find a smallest number in an array
What is pointer to pointer in c with example?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
What is the purpose of main() function?
What are the advantages of c language?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?