What are comments and how do you insert it in a C program?
No Answer is Posted For this Question
Be the First to Post Answer
What's a "sequence point"?
biggest of two no's with out using if condition statement
How can I change their mode to binary?
Is exit(status) truly equivalent to returning the same status from main?
What is the relationship between pointers and data structure?
Differentiate between ordinary variable and pointer in c.
Write a program to compute the following 1!+2!+...n!
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
what is the little endian and big endian?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
wat are the two methods for swapping two numbers without using temp variable??