How can I copy just a portion of a string?
No Answer is Posted For this Question
Be the First to Post Answer
What is atoi and atof in c?
What does it mean when the linker says that _end is undefined?
Do you know what is the purpose of 'extern' keyword in a function declaration?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
why we wont use '&' sing in aceesing the string using scanf
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Write a program to print “hello world” without using semicolon?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
Which is better pointer or array?
What are the three constants used in c?
write a program to print data of 5 five students with structures?