If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the = symbol and == symbol?
How can I swap two values without using a temporary?
what is c
What are compound statements?
What is the use of typedef in c?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
Write a c program using for loop in switch case?
What is extern keyword in c?
What are the types of i/o functions?
write a c program to print "Welcome" without using semicolon in the whole program ??
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Read two numbers from keyboard and find maximum of them?