What is the purpose of main() function?
No Answer is Posted For this Question
Be the First to Post Answer
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Is c dynamically typed?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Differentiate abs() function from fabs() function.
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What is the correct code to have following output in c using nested for loop?
find the minimum of three values inputted by the user
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
Write a program to find the biggest number of three numbers in c?
What does volatile do?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }