Why c is called a mid level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What are header files why are they important?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Can u return two values using return keyword? If yes, how? If no, why?
What is the stack in c?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is the proper way of these job Tell me about there full work
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
write a code for large nos multilication (upto 200 digits)
What is meant by gets in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?