How do you use a pointer to a function?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
How can you print HELLO WORLD without using "semicolon"?
How Many Header Files in c?
How can we open a file in Binary mode and Text mode?what is the difference?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
What will be the outcome of the following conditional statement if the value of variable s is 10?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is array in c with example?
C program to perform stack operation using singly linked list
whitch value return void main?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?