How can I copy just a portion of a string?
No Answer is Posted For this Question
Be the First to Post Answer
#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); }
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
what will be maximum number of comparisons when number of elements are given?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
WHAT IS HEADER?
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"); }
how would a 4*3 array A[4][3] stored in Row Major Order?
What is the purpose of & in scanf?
Explain how can you restore a redirected standard stream?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
what is difference between declaring the pointer as int and char in c language?
how to write hello word without using semicolon at the end?