What is structure pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is the difference between volatile and const volatile?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
What is the restrict keyword in C?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What is assignment operator?
what is the maximum no. of bytes calloc can allocate
using for loop sum 2 number of any 4 digit number in c language
how to build a exercise findig min number of e heap with list imlemented?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?