What does the message "automatic aggregate intialization is an ansi feature" mean?
No Answer is Posted For this Question
Be the First to Post Answer
how to use showbits function?
What is n in c?
What is the difference between a function and a method in c?
What are keywords in c with examples?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is the exact difference between '\0' and ""
What are reserved words with a programming language?
What is pragma c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
who invented c
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?