Who developed c language?
No Answer is Posted For this Question
Be the First to Post Answer
What does c mean in standard form?
What are static functions?
What is character constants?
how do you programme Carrier Sense Multiple Access
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
write a c program to find biggest of 3 number without relational operator?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
Why calloc is better than malloc?
mplementation of stack using any programing language
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon