What is the difference between the = symbol and == symbol?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What is the purpose of scanf() and printf() functions?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What is Heap?
Differentiate between new and malloc(), delete and free() ?
can i know the source code for reversing a linked list with out using a temporary variable?
Why is python slower than c?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
what is a static function
What is output redirection?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }