What is a stream water?
No Answer is Posted For this Question
Be the First to Post Answer
writw a program to insert an element in the begning of a doubly linked list
What is Bitwise Operator and how it works?
what is the difference between unix os and linux os
What is a pragma?
Is there a way to compare two structure variables?
What is the difference between static and global variables?
What is the translation phases used in c language?
Explain data types & how many data types supported by c?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
how to capitalise first letter of each word in a given string?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }