Can we use any name in place of argv and argc as command line arguments?
No Answer is Posted For this Question
Be the First to Post Answer
What is stack in c?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
What is atoi and atof in c?
All technical questions
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What will be your course of action for a push operation?
Explain bitwise shift operators?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is c definition?
sum of two integers values only other then integer it should print invalid input.
What is the importance of c in your views?
Do array subscripts always start with zero?