What will be the outcome of the following conditional statement if the value of variable s is 10?
No Answer is Posted For this Question
Be the First to Post Answer
in malloc and calloc which one is fast and why?
Can a program have two main functions?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
what is the difference between class and unio?
What are actual arguments?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
What is sizeof int in c?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
with out using main how to execute the program?
pierrot's divisor program using c or c++ code
What is the importance of c in your views?
What is string in c language?