What are the advantages of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Can u return two values using return keyword? If yes, how? If no, why?
What is calloc malloc realloc in c?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
What is the difference between c and python?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
How to declare a variable?
how to introdu5ce my self in serco
What is pragma in c?
i have a written test in tomorrow
What are the loops in c?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }