For what purpose null pointer used?
No Answer is Posted For this Question
Be the First to Post Answer
please send me papers for Dy. manager IT , PNB. it would be a great help for me.
what is available in C language but not in C++?
10 Answers CTS, TCS,
Who is the founder of c language?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Write a c program to build a heap method using Pointer to function and pointer to structure ?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
write a c programme for add of two numbers with out use of arthematic operators
What language is c written?
what is the advantage of software development
Should a function contain a return statement if it does not return a value?
What is the difference between null pointer and wild pointer?