What is nested structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by operator precedence?
How can a string be converted to a number?
cavium networks written test pattern ..
How can I find out how much memory is available?
wat are the two methods for swapping two numbers without using temp variable??
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
What language is lisp written in?
What does volatile do?
How can I open a file so that other programs can update it at the same time?
write a program to concatenation the string using switch case?
explain what are pointers?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.