What is pointer and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
write an algorithm and a program to count the number of elements in a circularly singly linked list
What are control structures? What are the different types?
What is string constants?
What are the standard predefined macros?
Why we use void main in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Is it valid to address one element beyond the end of an array?
how many errors in c explain deply
program for swapping two strings by using pointers in c language