What is the difference between c &c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain function pointer with exapmles.
What are inbuilt functions in c?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
inline function is there in c language?
Can a pointer be null?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
Is c is a procedural language?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
If I have a char * variable pointing to the name of a function ..
What is the need of structure in c?
Is void a keyword in c?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}