When should the const modifier be used?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is the difference between constant pointer and constant variable?
What is the right type to use for boolean values in c?
Why c is procedure oriented?
What is a const pointer in c?
Binary tree traversing
What does a pointer variable always consist of?
What are nested functions in c?
What is difference between constant pointer and constant variable?
Is Exception handling possible in c language?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output