Solve This (? + ? + ?=30)
If 1111=R, 2222=T, 3333=E, 4444=N Then 5555=?
Guess the Hindi Muhawara from the following whatsapp Emoticons?
Sweet, Medicine, Film, Girl, City, Car, Place, Doggy all are name same, guess which word it is?
A girl is blind, deaf, dumb and uneducated too. A boy loves her. How would he propose without touching her?
Four Question, One Answer: One River Name, One Flower Name, One Film Name, One Actress Name?
Guess me who am I, I am the first on earth, the second in heaven...
Which Indian cricketer is known as "Brown Bradman"?
What was Shoemaker-Levy 9, that crashed into Jupiter in 1994?
Bernard Silver and Norman Woodland pioneered and were the first, in 1952, to patent what?
Its simple, as per what I understand.
1. Open your .c file 2. goto the function which you want to rename, 3. rename it with the new name, 4. replace the new name, where ever this fucntion previously called.
Agree with Arshad, not sure what is the meaning of change the name of function but if you are looking a function to be identified with two names then try typedef.
Used the sizeof of function, which gives 1; why? I want to know the size of the entire function. How to achive it?
#include <stdio.h> void (*p)(int); void test_func(int data) { printf("%d\n",data); } main(void) { p = test_func; (*p)(4); printf("%d",sizeof(test_func)); }
Can someone help me with the example when to use normal function calling and when pointer function calling. What was the reason for introducing pointer function calling in C?