Explain pointer. What are function pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
can we define a function in structure?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
How can I access memory located at a certain address?
Write a program to print prime nums from 1-20 using c programing?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
how can make variable not in registers
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.